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

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

Issue 2927653002: WebUI: Move test_browser_proxy.js one level up. (Closed)
Patch Set: Remove namespace 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/test_lifetime_browser_proxy.js
diff --git a/chrome/test/data/webui/settings/test_lifetime_browser_proxy.js b/chrome/test/data/webui/settings/test_lifetime_browser_proxy.js
index dac0dcc869121311a1dc5e4f3b9121821446534d..cb9f37e13a9e34512005ad4bd970d489c794d8d8 100644
--- a/chrome/test/data/webui/settings/test_lifetime_browser_proxy.js
+++ b/chrome/test/data/webui/settings/test_lifetime_browser_proxy.js
@@ -8,18 +8,18 @@ cr.define('settings', function() {
*
* @constructor
* @implements {settings.LifetimeBrowserProxy}
- * @extends {settings.TestBrowserProxy}
+ * @extends {TestBrowserProxy}
*/
var TestLifetimeBrowserProxy = function() {
var methodNames = ['restart', 'relaunch'];
if (cr.isChromeOS)
methodNames.push('signOutAndRestart', 'factoryReset');
- settings.TestBrowserProxy.call(this, methodNames);
+ TestBrowserProxy.call(this, methodNames);
};
TestLifetimeBrowserProxy.prototype = {
- __proto__: settings.TestBrowserProxy.prototype,
+ __proto__: TestBrowserProxy.prototype,
/** @override */
restart: function() {

Powered by Google App Engine
This is Rietveld 408576698