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

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

Issue 6992022: Move Proxy Settings API out of experimental (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed remainder of merge conflict. Fixes unit test 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 be6d479c7580ef4c4099c3bc6b33df26b11a0ac9..58240db98a7b655ca54f2b703861d27558f3afdf 100644
--- a/chrome/test/data/extensions/api_test/proxy/auto/test.js
+++ b/chrome/test/data/extensions/api_test/proxy/auto/test.js
@@ -22,19 +22,19 @@ chrome.test.runTests([
chrome.test.succeed();
},
function setAutoSettings() {
- chrome.experimental.proxy.settings.set(
+ chrome.proxy.settings.set(
{'value': config},
chrome.test.callbackPass());
},
function verifyRegular() {
- chrome.experimental.proxy.settings.get(
+ chrome.proxy.settings.get(
{'incognito': false},
expect({ 'value': config,
'levelOfControl': "ControlledByThisExtension" },
"invalid proxy settings"));
},
function verifyIncognito() {
- chrome.experimental.proxy.settings.get(
+ chrome.proxy.settings.get(
{'incognito': true},
expect({ 'value': config,
'incognitoSpecific': false,

Powered by Google App Engine
This is Rietveld 408576698