Index: chrome/test/data/extensions/api_test/content_settings/persistent_incognito/test.html |
diff --git a/chrome/test/data/extensions/api_test/content_settings/persistent_incognito/test.html b/chrome/test/data/extensions/api_test/content_settings/persistent_incognito/test.html |
index 098ed2a4852d0d4aadf2bd311c95d2ab3922bcbc..6d202da7b1a3746a8e2ec92cd1c521bacdda96b1 100644 |
--- a/chrome/test/data/extensions/api_test/content_settings/persistent_incognito/test.html |
+++ b/chrome/test/data/extensions/api_test/content_settings/persistent_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")); |
}, |
]); |