Commit 89e09aeb authored by rkc@chromium.org's avatar rkc@chromium.org

Fix Feedback to use it's own profile in incognito/guest sessions and not...

Fix Feedback to use it's own profile in incognito/guest sessions and not redirect to the default profile. Also requires the extension to be loaded in split mode for incognito.

R=asargent@chromium.org, xiyuan@chromium.org
BUG=331197

Review URL: https://codereview.chromium.org/130233002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@243987 0039d316-1c4b-4281-b951-d872f2087c98
parent 112b6f7e
...@@ -39,7 +39,7 @@ class FeedbackPrivateAPI : public ProfileKeyedAPI { ...@@ -39,7 +39,7 @@ class FeedbackPrivateAPI : public ProfileKeyedAPI {
return "FeedbackPrivateAPI"; return "FeedbackPrivateAPI";
} }
static const bool kServiceRedirectedInIncognito = true; static const bool kServiceHasOwnInstanceInIncognito = true;
Profile* const profile_; Profile* const profile_;
FeedbackService* service_; FeedbackService* service_;
......
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
"name": "Feedback", "name": "Feedback",
"version": "1.0", "version": "1.0",
"manifest_version": 2, "manifest_version": 2,
"incognito" : "split",
"description": "User feedback extension", "description": "User feedback extension",
"icons": { "icons": {
"32": "images/icon32.png", "32": "images/icon32.png",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment