| Index: chrome/test/data/extensions/api_test/proxy/individual/test.js
|
| diff --git a/chrome/test/data/extensions/api_test/proxy/individual/test.js b/chrome/test/data/extensions/api_test/proxy/individual/test.js
|
| index 860e3dbfa8df12c387a91e84e2d8fc0524751474..dade2a527247950a8ed35f239dcb507539013f32 100644
|
| --- a/chrome/test/data/extensions/api_test/proxy/individual/test.js
|
| +++ b/chrome/test/data/extensions/api_test/proxy/individual/test.js
|
| @@ -66,19 +66,19 @@ chrome.test.runTests([
|
| chrome.test.succeed();
|
| },
|
| function setIndividualProxies() {
|
| - 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': configExpected,
|
| 'levelOfControl': "ControlledByThisExtension" },
|
| "invalid proxy settings"));
|
| },
|
| function verifyIncognito() {
|
| - chrome.experimental.proxy.settings.get(
|
| + chrome.proxy.settings.get(
|
| {'incognito': true},
|
| expect({ 'value': configExpected,
|
| 'incognitoSpecific': false,
|
|
|