| Index: chrome/test/data/webui/settings/about_page_tests.js
|
| diff --git a/chrome/test/data/webui/settings/about_page_tests.js b/chrome/test/data/webui/settings/about_page_tests.js
|
| index 32837a62be6ea8e7af82f78f0fe4a3d965bbd442..d2d691321e59f956f755119f1ea09300a3aeca5d 100644
|
| --- a/chrome/test/data/webui/settings/about_page_tests.js
|
| +++ b/chrome/test/data/webui/settings/about_page_tests.js
|
| @@ -6,7 +6,7 @@ cr.define('settings_about_page', function() {
|
| /**
|
| * @constructor
|
| * @implements {settings.AboutPageBrowserProxy}
|
| - * @extends {settings.TestBrowserProxy}
|
| + * @extends {TestBrowserProxy}
|
| */
|
| var TestAboutPageBrowserProxy = function() {
|
| var methodNames = [
|
| @@ -27,7 +27,7 @@ cr.define('settings_about_page', function() {
|
| if (cr.isMac)
|
| methodNames.push('promoteUpdater');
|
|
|
| - settings.TestBrowserProxy.call(this, methodNames);
|
| + TestBrowserProxy.call(this, methodNames);
|
|
|
| /** @private {!UpdateStatus} */
|
| this.updateStatus_ = UpdateStatus.UPDATED;
|
| @@ -53,7 +53,7 @@ cr.define('settings_about_page', function() {
|
| };
|
|
|
| TestAboutPageBrowserProxy.prototype = {
|
| - __proto__: settings.TestBrowserProxy.prototype,
|
| + __proto__: TestBrowserProxy.prototype,
|
|
|
| /** @param {!UpdateStatus} updateStatus */
|
| setUpdateStatus: function(updateStatus) {
|
|
|