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

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

Issue 1912483003: Expand the footer in the material design Clear Browsing Data dialog. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 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
« no previous file with comments | « chrome/browser/ui/webui/settings/settings_clear_browsing_data_handler.cc ('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/privacy_page_test.js
diff --git a/chrome/test/data/webui/settings/privacy_page_test.js b/chrome/test/data/webui/settings/privacy_page_test.js
index 5bbdc24d18301149a3bd08cbec7881bf0bbb9dc7..5453a475dc51b0263bc5410fe7cc1ba7dec9ed50 100644
--- a/chrome/test/data/webui/settings/privacy_page_test.js
+++ b/chrome/test/data/webui/settings/privacy_page_test.js
@@ -27,7 +27,10 @@ cr.define('settings_privacy_page', function() {
* @implements {settings.ClearBrowsingDataBrowserProxy}
*/
function TestClearBrowsingDataBrowserProxy() {
- settings.TestBrowserProxy.call(this, ['clearBrowsingData']);
+ settings.TestBrowserProxy.call(this, [
+ 'initialize',
+ 'clearBrowsingData',
+ ]);
/**
* The promise to return from |clearBrowsingData|.
@@ -52,6 +55,11 @@ cr.define('settings_privacy_page', function() {
return this.clearBrowsingDataPromise_ !== null ?
this.clearBrowsingDataPromise_ : Promise.resolve();
},
+
+ /** @override */
+ initialize: function() {
+ this.methodCalled('initialize');
+ },
};
function registerNativeCertificateManagerTests() {
« no previous file with comments | « chrome/browser/ui/webui/settings/settings_clear_browsing_data_handler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698