Index: chrome/test/data/extensions/api_test/proxy/auto/test.js |
diff --git a/chrome/test/data/extensions/api_test/proxy/auto/test.js b/chrome/test/data/extensions/api_test/proxy/auto/test.js |
index 98982c08b18bab14c6f6263b931ef4df3c7a7aa6..d00e56785e1f7dceb91e61d9aeb0caeae57b3c78 100644 |
--- a/chrome/test/data/extensions/api_test/proxy/auto/test.js |
+++ b/chrome/test/data/extensions/api_test/proxy/auto/test.js |
@@ -22,19 +22,19 @@ chrome.test.runTests([ |
chrome.test.succeed(); |
}, |
function setAutoSettings() { |
- chrome.experimental.proxy.settings.set( |
+ chrome.proxy.settings.set( |
{'value': config}, |
chrome.test.callbackPass()); |
}, |
function verifyRegular() { |
- chrome.experimental.proxy.settings.getEffective( |
+ chrome.proxy.settings.getEffective( |
{'incognito': false}, |
expect({ 'value': config, |
'levelOfControl': "ControlledByThisExtension" }, |
"invalid proxy settings")); |
}, |
function verifyIncognito() { |
- chrome.experimental.proxy.settings.getEffective( |
+ chrome.proxy.settings.getEffective( |
{'incognito': true}, |
expect({ 'value': config, |
'incognitoSpecific': false, |