| Index: chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/proxy_form_controller_test.js
|
| diff --git a/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/proxy_form_controller_test.js b/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/proxy_form_controller_test.js
|
| index 35fd42477c62c2e499a32b02f0cd98144b68e3ae..b577cb65e98d35678ed59adfe0e513d0e92961ef 100644
|
| --- a/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/proxy_form_controller_test.js
|
| +++ b/chrome/common/extensions/docs/examples/extensions/proxy_configuration/test/proxy_form_controller_test.js
|
| @@ -14,11 +14,14 @@ chrome.experimental = chrome.experimental || {
|
| };
|
| // Stub out i18n
|
| chrome.i18n = chrome.i18n || {
|
| - getMessage: function(x) { return x; }
|
| + getMessage: function(x) { return x; }
|
| };
|
| -// Stub out messaging
|
| +// Stub out messaging and access.
|
| chrome.extension = chrome.extension || {
|
| - sendRequest: function() {}
|
| + sendRequest: function() {},
|
| + isAllowedIncognitoAccess: function(funk) {
|
| + funk(true);
|
| + }
|
| };
|
| var fixture = document.getElementById('fixture');
|
| var baselineHTML = fixture.innerHTML;
|
|
|