| 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() {
|
|
|