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..87bc78ddb3a42a926b550646272f49a27fe0e066 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 {test.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); |
+ test.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__: test.TestBrowserProxy.prototype, |
/** @param {!UpdateStatus} updateStatus */ |
setUpdateStatus: function(updateStatus) { |