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

Unified Diff: chrome/common/extensions/docs/examples/api/preferences/allowThirdPartyCookies/popup.html

Issue 7310004: Add sample extension to allow/block third-party cookies. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 9 years, 5 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/examples/api/preferences/allowThirdPartyCookies/popup.html
diff --git a/chrome/common/extensions/docs/examples/api/preferences/enableReferrer/popup.html b/chrome/common/extensions/docs/examples/api/preferences/allowThirdPartyCookies/popup.html
similarity index 93%
copy from chrome/common/extensions/docs/examples/api/preferences/enableReferrer/popup.html
copy to chrome/common/extensions/docs/examples/api/preferences/allowThirdPartyCookies/popup.html
index dd535010d0667987412d6fb2326f61b130428343..67556a1c74a3596fdf043f27b70c45534135ed82 100644
--- a/chrome/common/extensions/docs/examples/api/preferences/enableReferrer/popup.html
+++ b/chrome/common/extensions/docs/examples/api/preferences/allowThirdPartyCookies/popup.html
@@ -2,7 +2,7 @@
<html>
<head>
<script>
-var pref = chrome.experimental.contentSettings.global.referrersEnabled;
+var pref = chrome.experimental.contentSettings.global.thirdPartyCookiesAllowed;
/**
* Returns whether the |levelOfControl| means that the extension can change the
@@ -85,7 +85,8 @@ function init() {
* @param incognito{boolean} Whether the value is specific to incognito mode.
*/
function setPrefValue(enabled, incognito) {
- pref.set({'value':enabled, 'incognito': incognito});
+ var scope = incognito ? 'incognito_session_only' : 'regular';
+ pref.set({'value': enabled, 'scope': scope});
}
/**
@@ -112,7 +113,7 @@ function setUseSeparateIncognitoSettings(value) {
<body onload="init()">
<div style="width: 300px">
-<input type="checkbox" onclick="setPrefValue(this.checked)" id="regularValue" /> Enable referrers
+<input type="checkbox" onclick="setPrefValue(this.checked)" id="regularValue" /> Allow third-party sites to set cookies
<div id="incognito" style="display:none">
<input type="checkbox" onclick="setUseSeparateIncognitoSettings(this.checked)" id="useSeparateIncognitoSettings" /> Use separate setting for incognito mode:

Powered by Google App Engine
This is Rietveld 408576698