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

Unified Diff: chrome/test/data/extensions/api_test/proxy/direct/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/direct/test.js
diff --git a/chrome/test/data/extensions/api_test/proxy/direct/test.js b/chrome/test/data/extensions/api_test/proxy/direct/test.js
index 54500e0f57ef93a584639a820eb0f6a47b9e07ca..03ef27d3e1980f430054ce853e369937f7f81795 100644
--- a/chrome/test/data/extensions/api_test/proxy/direct/test.js
+++ b/chrome/test/data/extensions/api_test/proxy/direct/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