| 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() {
|
|
|