Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(801)

Unified Diff: chrome/common/extensions/api/extension_api.json

Issue 7065033: Support persistent incognito preferences (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed comments Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/api/extension_api.json
diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json
index 456b9b8aceafb86ad29d452d364cb2674e016a33..82645ba73744781aadc630cc22c05c84ea1ca79f 100644
--- a/chrome/common/extensions/api/extension_api.json
+++ b/chrome/common/extensions/api/extension_api.json
@@ -5384,9 +5384,9 @@
},
"scope": {
"type": "string",
- "enum": ["regular"],
+ "enum": ["regular", "incognito_persistent"],
"optional": true,
- "description": "Where to set the preference (default: regular). 'regular' = preference for regular profile (which is inherited by the incognito profile if not overridden elsewhere)."
+ "description": "Where to set the preference (default: regular). 'regular' = preference for regular profile (which is inherited by the incognito profile if not overridden elsewhere), 'incognito_persistent' = preference for incognito profile that sustains browser restarts (overrides regular preferences)."
}
}
},
@@ -5411,9 +5411,9 @@
"properties": {
"scope": {
"type": "string",
- "enum": ["regular"],
+ "enum": ["regular", "incognito_persistent"],
"optional": true,
- "description": "Where to clear the preference (default: regular). 'regular' = preference for regular profile (which is inherited by the incognito profile if not overridden elsewhere)."
+ "description": "Where to set the preference (default: regular). 'regular' = preference for regular profile (which is inherited by the incognito profile if not overridden elsewhere), 'incognito_persistent' = preference for incognito profile that sustains browser restarts (overrides regular preferences)."
}
}
},
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | chrome/common/extensions/docs/examples/extensions/proxy_configuration.zip » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698