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

Unified Diff: chrome/common/extensions/docs/experimental.proxy.html

Issue 6990054: Disable setting incognito prefs for extensions for now. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updated copyright header 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/docs/experimental.proxy.html
diff --git a/chrome/common/extensions/docs/experimental.proxy.html b/chrome/common/extensions/docs/experimental.proxy.html
index 4010576159d6fd6441518df15b4a45ae2eab051a..20867e89d87544e7c3533b220ce9ae5e677539d7 100644
--- a/chrome/common/extensions/docs/experimental.proxy.html
+++ b/chrome/common/extensions/docs/experimental.proxy.html
@@ -563,7 +563,7 @@ apply to regular and incognito windows.
}
};
chrome.experimental.proxy.settings.set(
- {'value': config, 'incognito': false},
+ {value: config, scope: 'regular'},
function() {});
</pre>
@@ -582,7 +582,7 @@ The following code sets a custom pac script.
}
};
chrome.experimental.proxy.settings.set(
- {'value': config, 'incognito': false},
+ {value: config, scope: 'regular'},
function() {});
</pre>
« no previous file with comments | « chrome/common/extensions/docs/experimental.extension.html ('k') | chrome/common/extensions/docs/samples.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698