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

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

Issue 2927653002: WebUI: Move test_browser_proxy.js one level up. (Closed)
Patch Set: Created 3 years, 6 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/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) {

Powered by Google App Engine
This is Rietveld 408576698