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

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

Issue 2298283002: Site Settings Desktop: Support adding exceptions for incognito mode. (Closed)
Patch Set: Fix test Created 4 years, 3 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
« no previous file with comments | « chrome/test/data/webui/settings/site_list_tests.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 0402e1dd5a5d71bbe9b792b4b7426fd2965f1b2b..eff2a1aa2cb55aa47f161789b059e3c4c8805b2c 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
@@ -172,15 +172,15 @@ TestSiteSettingsPrefsBrowserProxy.prototype = {
/** @override */
resetCategoryPermissionForOrigin: function(
- primaryPattern, secondaryPattern, contentType) {
+ primaryPattern, secondaryPattern, contentType, incognito) {
this.methodCalled('resetCategoryPermissionForOrigin',
- [primaryPattern, secondaryPattern, contentType]);
+ [primaryPattern, secondaryPattern, contentType, incognito]);
return Promise.resolve();
},
/** @override */
setCategoryPermissionForOrigin: function(
- primaryPattern, secondaryPattern, contentType, value) {
+ primaryPattern, secondaryPattern, contentType, value, incognito) {
this.methodCalled('setCategoryPermissionForOrigin',
[primaryPattern, secondaryPattern, contentType, value]);
return Promise.resolve();
« no previous file with comments | « chrome/test/data/webui/settings/site_list_tests.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698