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

Unified Diff: chrome/test/data/extensions/api_test/proxy/bypass/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/bypass/test.js
diff --git a/chrome/test/data/extensions/api_test/proxy/bypass/test.js b/chrome/test/data/extensions/api_test/proxy/bypass/test.js
index 469b3ffe398098fc0a06693d8ff649b59894b0a7..fce860fab228e1b3c778b3785c81d0c2a1851512 100644
--- a/chrome/test/data/extensions/api_test/proxy/bypass/test.js
+++ b/chrome/test/data/extensions/api_test/proxy/bypass/test.js
@@ -39,19 +39,19 @@ chrome.test.runTests([
chrome.test.succeed();
},
function setIndividualProxies() {
- 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': configExpected,
'levelOfControl': "ControlledByThisExtension" },
"invalid proxy settings"));
},
function verifyIncognito() {
- chrome.experimental.proxy.settings.get(
+ chrome.proxy.settings.get(
{'incognito': true},
expect({ 'value': configExpected,
'incognitoSpecific': false,

Powered by Google App Engine
This is Rietveld 408576698