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

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: 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/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 e9fab71e41bb84ee9b924aeda1318d94ee251d1c..fb659118cf94fb9be3c20cad6dd1b894fae0dc17 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.get(
+ chrome.proxy.settings.get(
{'incognito': false},
expect({ 'value': config,
'levelOfControl': "ControlledByThisExtension" },

Powered by Google App Engine
This is Rietveld 408576698