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

Unified Diff: chrome/test/data/extensions/api_test/proxy/auto/test.js

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/proxy/auto/test.js
diff --git a/chrome/test/data/extensions/api_test/proxy/auto/test.js b/chrome/test/data/extensions/api_test/proxy/auto/test.js
index 58240db98a7b655ca54f2b703861d27558f3afdf..c6b9706c5ae467d96cbe2b5a3aab8d3a5e3b8e35 100644
--- a/chrome/test/data/extensions/api_test/proxy/auto/test.js
+++ b/chrome/test/data/extensions/api_test/proxy/auto/test.js
@@ -30,7 +30,7 @@ chrome.test.runTests([
chrome.proxy.settings.get(
{'incognito': false},
expect({ 'value': config,
- 'levelOfControl': "ControlledByThisExtension" },
+ 'levelOfControl': "controlled_by_this_extension" },
"invalid proxy settings"));
},
function verifyIncognito() {
@@ -38,7 +38,7 @@ chrome.test.runTests([
{'incognito': true},
expect({ 'value': config,
'incognitoSpecific': false,
- 'levelOfControl': "ControlledByThisExtension" },
+ 'levelOfControl': "controlled_by_this_extension" },
"invalid proxy settings"));
}
]);

Powered by Google App Engine
This is Rietveld 408576698