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

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

Issue 6992022: Move Proxy Settings API out of experimental (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed Bernhard's comment 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/pacdata/test.js
diff --git a/chrome/test/data/extensions/api_test/proxy/pacdata/test.js b/chrome/test/data/extensions/api_test/proxy/pacdata/test.js
index 308a090b4515935ea4080853eb4ae75c623166a7..7e96a360769d38be37e885f76f43dd7b2feb4ed1 100644
--- a/chrome/test/data/extensions/api_test/proxy/pacdata/test.js
+++ b/chrome/test/data/extensions/api_test/proxy/pacdata/test.js
@@ -31,12 +31,12 @@ chrome.test.runTests([
chrome.test.succeed();
},
function setAutoSettings() {
- chrome.experimental.proxy.settings.set(
+ chrome.proxy.settings.set(
{'value': config},
chrome.test.callbackPass());
},
function verifySettings() {
- chrome.experimental.proxy.settings.getEffective(
+ chrome.proxy.settings.getEffective(
{'incognito': false},
expect({ 'value': config,
'levelOfControl': "ControlledByThisExtension" },

Powered by Google App Engine
This is Rietveld 408576698