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/individual_remove/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/individual_remove/test.js
diff --git a/chrome/test/data/extensions/api_test/proxy/individual_remove/test.js b/chrome/test/data/extensions/api_test/proxy/individual_remove/test.js
index f62019d524e4e48f1f4cd862f07b1d9ff4d801ca..4b47c723f835835c55d82537260566a7f9f3b620 100644
--- a/chrome/test/data/extensions/api_test/proxy/individual_remove/test.js
+++ b/chrome/test/data/extensions/api_test/proxy/individual_remove/test.js
@@ -39,12 +39,12 @@ chrome.test.runTests([
chrome.test.succeed();
},
function setIndividualProxies() {
- chrome.experimental.proxy.settings.set(
+ chrome.proxy.settings.set(
{'value': config, 'scope': 'regular'},
chrome.test.callbackPass());
},
function clearProxies() {
- chrome.experimental.proxy.settings.clear(
+ chrome.proxy.settings.clear(
{'scope': 'regular'},
chrome.test.callbackPass());
}

Powered by Google App Engine
This is Rietveld 408576698