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

Unified Diff: chrome/test/data/webui/settings/downloads_page_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/downloads_page_test.js
diff --git a/chrome/test/data/webui/settings/downloads_page_test.js b/chrome/test/data/webui/settings/downloads_page_test.js
index c9f50ce9e295685efcacc17e370e79cc350afa98..7d3f971fbbb6ff4e8e53b7d1340949785968fe9c 100644
--- a/chrome/test/data/webui/settings/downloads_page_test.js
+++ b/chrome/test/data/webui/settings/downloads_page_test.js
@@ -5,10 +5,10 @@
/**
* @constructor
* @implements {settings.DownloadsBrowserProxy}
- * @extends {settings.TestBrowserProxy}
+ * @extends {TestBrowserProxy}
*/
var TestDownloadsBrowserProxy = function() {
- settings.TestBrowserProxy.call(this, [
+ TestBrowserProxy.call(this, [
'initializeDownloads',
'selectDownloadLocation',
'resetAutoOpenFileTypes',
@@ -16,7 +16,7 @@ var TestDownloadsBrowserProxy = function() {
};
TestDownloadsBrowserProxy.prototype = {
- __proto__: settings.TestBrowserProxy.prototype,
+ __proto__: TestBrowserProxy.prototype,
/** @override */
initializeDownloads: function() {

Powered by Google App Engine
This is Rietveld 408576698