| Index: chrome/test/data/extensions/api_test/proxy/direct/test.js
|
| diff --git a/chrome/test/data/extensions/api_test/proxy/direct/test.js b/chrome/test/data/extensions/api_test/proxy/direct/test.js
|
| index b60f7a25da5aeee3d9092c151c6a0a6c141ef170..c77b530358eb5dafed82f4a6748c5c2d40846dbf 100644
|
| --- a/chrome/test/data/extensions/api_test/proxy/direct/test.js
|
| +++ b/chrome/test/data/extensions/api_test/proxy/direct/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,
|
|
|