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

Unified Diff: chrome/test/data/webui/settings/test_reset_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_reset_browser_proxy.js
diff --git a/chrome/test/data/webui/settings/test_reset_browser_proxy.js b/chrome/test/data/webui/settings/test_reset_browser_proxy.js
index 04780dbcfc960826ab949041aa18ae2ff6ee846e..a6046d925234d16f96f6c81ccfbc838a52bf905f 100644
--- a/chrome/test/data/webui/settings/test_reset_browser_proxy.js
+++ b/chrome/test/data/webui/settings/test_reset_browser_proxy.js
@@ -6,10 +6,10 @@ cr.define('reset_page', function() {
/**
* @constructor
* @implements {settings.ResetBrowserProxy}
- * @extends {settings.TestBrowserProxy}
+ * @extends {TestBrowserProxy}
*/
var TestResetBrowserProxy = function() {
- settings.TestBrowserProxy.call(this, [
+ TestBrowserProxy.call(this, [
'performResetProfileSettings',
'onHideResetProfileDialog',
'onHideResetProfileBanner',
@@ -21,7 +21,7 @@ cr.define('reset_page', function() {
};
TestResetBrowserProxy.prototype = {
- __proto__: settings.TestBrowserProxy.prototype,
+ __proto__: TestBrowserProxy.prototype,
/** @override */
performResetProfileSettings: function(sendSettings, requestOrigin) {

Powered by Google App Engine
This is Rietveld 408576698