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

Unified Diff: chrome/test/data/webui/settings/test_search_engines_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_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) {

Powered by Google App Engine
This is Rietveld 408576698