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

Unified Diff: chrome/test/data/webui/settings/import_data_dialog_test.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/import_data_dialog_test.js
diff --git a/chrome/test/data/webui/settings/import_data_dialog_test.js b/chrome/test/data/webui/settings/import_data_dialog_test.js
index 66c62207ddccc046e3eb8732fa6390fa148a1f8b..4f29a7790dd09a13b09738bf2c3dd99acdf1c563 100644
--- a/chrome/test/data/webui/settings/import_data_dialog_test.js
+++ b/chrome/test/data/webui/settings/import_data_dialog_test.js
@@ -5,10 +5,10 @@
/**
* @constructor
* @implements {settings.ImportDataBrowserProxy}
- * @extends {settings.TestBrowserProxy}
+ * @extends {TestBrowserProxy}
*/
var TestImportDataBrowserProxy = function() {
- settings.TestBrowserProxy.call(this, [
+ TestBrowserProxy.call(this, [
'initializeImportDialog',
'importFromBookmarksFile',
'importData',
@@ -19,7 +19,7 @@ var TestImportDataBrowserProxy = function() {
};
TestImportDataBrowserProxy.prototype = {
- __proto__: settings.TestBrowserProxy.prototype,
+ __proto__: TestBrowserProxy.prototype,
/** @param {!Array<!settings.BrowserProfile} browserProfiles */
setBrowserProfiles: function(browserProfiles) {

Powered by Google App Engine
This is Rietveld 408576698