Chromium Code Reviews| Index: chrome/test/data/webui/settings/test_site_settings_prefs_browser_proxy.js |
| diff --git a/chrome/test/data/webui/settings/test_site_settings_prefs_browser_proxy.js b/chrome/test/data/webui/settings/test_site_settings_prefs_browser_proxy.js |
| index 29a10f435cc7fbc600d0d2ec7cabbe069468a999..76f26b9f54fcd228f33d38474d3209ad6e927766 100644 |
| --- a/chrome/test/data/webui/settings/test_site_settings_prefs_browser_proxy.js |
| +++ b/chrome/test/data/webui/settings/test_site_settings_prefs_browser_proxy.js |
| @@ -77,23 +77,13 @@ var prefsEmpty = { |
| */ |
| var TestSiteSettingsPrefsBrowserProxy = function() { |
| settings.TestBrowserProxy.call(this, [ |
| - 'fetchUsbDevices', |
| - 'fetchZoomLevels', |
| - 'getCookieDetails', |
| - 'getDefaultValueForContentType', |
| - 'getExceptionList', |
| - 'isPatternValid', |
| - 'observeProtocolHandlers', |
| - 'observeProtocolHandlersEnabledState', |
| - 'reloadCookies', |
| - 'removeCookie', |
| - 'removeProtocolHandler', |
| - 'removeUsbDevice', |
| - 'removeZoomLevel', |
| - 'resetCategoryPermissionForOrigin', |
| - 'setCategoryPermissionForOrigin', |
| - 'setDefaultValueForContentType', |
| - 'setProtocolDefault' |
|
dpapad
2017/05/02 00:36:35
Nit (optional): Can you try adding |updateIncognit
dschuyler
2017/05/02 01:05:22
Yep! that worked thanks.
Done.
|
| + 'fetchUsbDevices', 'fetchZoomLevels', 'getCookieDetails', |
| + 'getDefaultValueForContentType', 'getExceptionList', 'isPatternValid', |
| + 'observeProtocolHandlers', 'observeProtocolHandlersEnabledState', |
| + 'reloadCookies', 'removeCookie', 'removeProtocolHandler', 'removeUsbDevice', |
| + 'removeZoomLevel', 'resetCategoryPermissionForOrigin', |
| + 'setCategoryPermissionForOrigin', 'setDefaultValueForContentType', |
| + 'setProtocolDefault', 'updateIncognitoStatus' |
| ]); |
| /** @private {boolean} */ |
| @@ -371,5 +361,10 @@ TestSiteSettingsPrefsBrowserProxy.prototype = { |
| /** @override */ |
| removeProtocolHandler: function() { |
| this.methodCalled('removeProtocolHandler', arguments); |
| + }, |
| + |
| + /** @override */ |
| + updateIncognitoStatus: function() { |
| + this.methodCalled('updateIncognitoStatus', arguments); |
| } |
| }; |