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")); |
}, |
]); |