| 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 be6d479c7580ef4c4099c3bc6b33df26b11a0ac9..58240db98a7b655ca54f2b703861d27558f3afdf 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.get(
|
| + chrome.proxy.settings.get(
|
| {'incognito': false},
|
| expect({ 'value': config,
|
| 'levelOfControl': "ControlledByThisExtension" },
|
| "invalid proxy settings"));
|
| },
|
| function verifyIncognito() {
|
| - chrome.experimental.proxy.settings.get(
|
| + chrome.proxy.settings.get(
|
| {'incognito': true},
|
| expect({ 'value': config,
|
| 'incognitoSpecific': false,
|
|
|