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

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: Addressed comments. 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
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 e7474b77b9831fb0a100e17b4044d2779e961b9a..96eb75b3afc111edf7e9194a71625e35ff031454 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, [
+ 'initializeFooter',
+ '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 */
+ initializeFooter: function() {
+ this.methodCalled('initializeFooter');
+ },
};
function registerNativeCertificateManagerTests() {

Powered by Google App Engine
This is Rietveld 408576698