Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4796)

Unified Diff: chrome/test/data/webui/settings/test_site_settings_prefs_browser_proxy.js

Issue 2854753002: [MD settings] clear incognito only checkbox (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}
};

Powered by Google App Engine
This is Rietveld 408576698