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

Unified Diff: chrome/test/data/extensions/api_test/content_settings/standard/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/standard/test.html
diff --git a/chrome/test/data/extensions/api_test/content_settings/standard/test.html b/chrome/test/data/extensions/api_test/content_settings/standard/test.html
index 39b930348edaffe22f879d18a03f8a391b971886..8dc75fbce8ba663e9f5357122a46f095c449072b 100644
--- a/chrome/test/data/extensions/api_test/content_settings/standard/test.html
+++ b/chrome/test/data/extensions/api_test/content_settings/standard/test.html
@@ -13,14 +13,14 @@ chrome.test.runTests([
cs.misc.blockThirdPartyCookies.get(
{},
expect({ 'value': true,
- 'levelOfControl': "ControllableByThisExtension" },
+ 'levelOfControl': "controllable_by_this_extension" },
"third-party cookies should be blocked"));
},
function getEnableReferrers() {
cs.misc.enableReferrers.get(
{},
expect({ 'value': false,
- 'levelOfControl': "ControllableByThisExtension" },
+ 'levelOfControl': "controllable_by_this_extension" },
"referrers should be disabled"));
},
function setBlockThirdPartyCookies() {

Powered by Google App Engine
This is Rietveld 408576698