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

Unified Diff: chrome/test/data/extensions/api_test/content_settings/session_only_incognito/test.html

Issue 6987017: Made all enums of preferences api unix_hacker_style (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with ToT 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/test/data/extensions/api_test/content_settings/session_only_incognito/test.html
diff --git a/chrome/test/data/extensions/api_test/content_settings/session_only_incognito/test.html b/chrome/test/data/extensions/api_test/content_settings/session_only_incognito/test.html
index 3fac32a78e1b00d087185baff7ff019aebb9d8ae..ee77a28ed4a7f18276d0295a6373e16300bb685a 100644
--- a/chrome/test/data/extensions/api_test/content_settings/session_only_incognito/test.html
+++ b/chrome/test/data/extensions/api_test/content_settings/session_only_incognito/test.html
@@ -14,7 +14,7 @@ chrome.test.runTests([
cs.misc.blockThirdPartyCookies.get(
{},
expect({ 'value': false,
- 'levelOfControl': "ControllableByThisExtension" },
+ 'levelOfControl': "controllable_by_this_extension" },
"third-party cookies should not be blocked"));
},
function getIncognito() {
@@ -22,7 +22,7 @@ chrome.test.runTests([
{ 'incognito': true },
expect({ 'value': false,
'incognitoSpecific': false,
- 'levelOfControl': "ControllableByThisExtension" },
+ 'levelOfControl': "controllable_by_this_extension" },
"third-party cookies should not be blocked in incognito mode"));
},
function set() {
@@ -34,7 +34,7 @@ chrome.test.runTests([
cs.misc.blockThirdPartyCookies.get(
{},
expect({ 'value': false,
- 'levelOfControl': "ControllableByThisExtension" },
+ 'levelOfControl': "controllable_by_this_extension" },
"third-party cookies should not be blocked"));
},
function getIncognito2() {
@@ -42,7 +42,7 @@ chrome.test.runTests([
{ 'incognito': true },
expect({ 'value': true,
'incognitoSpecific': true,
- 'levelOfControl': "ControlledByThisExtension" },
+ 'levelOfControl': "controlled_by_this_extension" },
"third-party cookies should be blocked in incognito mode"));
},
// We cannot set session_only_persistent preferences if there is no incognito
@@ -67,7 +67,7 @@ chrome.test.runTests([
cs.misc.blockThirdPartyCookies.get(
{},
expect({ 'value': false,
- 'levelOfControl': "ControllableByThisExtension" },
+ 'levelOfControl': "controllable_by_this_extension" },
"third-party cookies should not be blocked"));
},
function getIncognito3() {
@@ -75,7 +75,7 @@ chrome.test.runTests([
{ 'incognito': true },
expect({ 'value': false,
'incognitoSpecific': true,
- 'levelOfControl': "ControlledByThisExtension" },
+ 'levelOfControl': "controlled_by_this_extension" },
"third-party cookies should be blocked in incognito mode"));
},
]);

Powered by Google App Engine
This is Rietveld 408576698