| Index: chrome/test/data/webui/settings/test_search_engines_browser_proxy.js
|
| diff --git a/chrome/test/data/webui/settings/test_search_engines_browser_proxy.js b/chrome/test/data/webui/settings/test_search_engines_browser_proxy.js
|
| index d1b0b2d2d2d483274e552f29349209ddced97c37..02dc557c130bb5a2c02201f2277adac9641100f6 100644
|
| --- a/chrome/test/data/webui/settings/test_search_engines_browser_proxy.js
|
| +++ b/chrome/test/data/webui/settings/test_search_engines_browser_proxy.js
|
| @@ -10,10 +10,10 @@ cr.define('settings_search', function() {
|
| *
|
| * @constructor
|
| * @implements {settings.SearchEnginesBrowserProxy}
|
| - * @extends {settings.TestBrowserProxy}
|
| + * @extends {TestBrowserProxy}
|
| */
|
| var TestSearchEnginesBrowserProxy = function() {
|
| - settings.TestBrowserProxy.call(this, [
|
| + TestBrowserProxy.call(this, [
|
| 'getSearchEnginesList',
|
| 'removeSearchEngine',
|
| 'searchEngineEditCancelled',
|
| @@ -47,7 +47,7 @@ cr.define('settings_search', function() {
|
| };
|
|
|
| TestSearchEnginesBrowserProxy.prototype = {
|
| - __proto__: settings.TestBrowserProxy.prototype,
|
| + __proto__: TestBrowserProxy.prototype,
|
|
|
| /** @override */
|
| setDefaultSearchEngine: function(modelIndex) {
|
|
|