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

Unified Diff: chrome/test/data/extensions/api_test/proxy/individual_incognito_also/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_incognito_also/test.js
diff --git a/chrome/test/data/extensions/api_test/proxy/individual_incognito_also/test.js b/chrome/test/data/extensions/api_test/proxy/individual_incognito_also/test.js
index 5ea46bb46c314891930b08f5f5a609e660ac54fa..d278bbd0af3e5864ab6f5ccebbb21f7256c8ff38 100644
--- a/chrome/test/data/extensions/api_test/proxy/individual_incognito_also/test.js
+++ b/chrome/test/data/extensions/api_test/proxy/individual_incognito_also/test.js
@@ -38,7 +38,7 @@ chrome.test.runTests([
};
var config = { rules: rules, mode: "fixed_servers" };
- chrome.experimental.proxy.settings.set(
+ chrome.proxy.settings.set(
{'value': config, 'incognito': false},
chrome.test.callbackPass());
},
@@ -68,7 +68,7 @@ chrome.test.runTests([
};
var config = { rules: rules, mode: "fixed_servers" };
- chrome.experimental.proxy.settings.set(
+ chrome.proxy.settings.set(
{'value': config, 'incognito': true},
chrome.test.callbackPass());
}

Powered by Google App Engine
This is Rietveld 408576698