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

Unified Diff: chrome/browser/resources/options/search_engine_manager.js

Issue 2806081: DOMUI prefs: Add stub sub-page for search engine management (Closed)
Patch Set: Rebased to trunk Created 10 years, 5 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
« no previous file with comments | « chrome/browser/resources/options/search_engine_manager.html ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/options/search_engine_manager.js
diff --git a/chrome/browser/resources/options/search_engine_manager.js b/chrome/browser/resources/options/search_engine_manager.js
new file mode 100644
index 0000000000000000000000000000000000000000..c1bdd7640ed1d5d2a192dabc89982b3907357868
--- /dev/null
+++ b/chrome/browser/resources/options/search_engine_manager.js
@@ -0,0 +1,29 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+///////////////////////////////////////////////////////////////////////////////
+// SearchEngineManager class:
+
+/**
+ * Encapsulated handling of search engine management page.
+ * @constructor
+ */
+function SearchEngineManager() {
+ this.activeNavTab = null;
arv (Not doing code reviews) 2010/07/27 18:58:37 this line seems unnecessary
+ OptionsPage.call(this, 'searchEngines',
+ templateData.searchEngineManagerPage,
+ 'searchEngineManagerPage');
+}
+
+cr.addSingletonGetter(SearchEngineManager);
+
+SearchEngineManager.prototype = {
+ __proto__: OptionsPage.prototype,
+
+ initializePage: function() {
+ OptionsPage.prototype.initializePage.call(this);
+
+ // TODO(stuartmorgan): Add initialization here.
+ },
+};
« no previous file with comments | « chrome/browser/resources/options/search_engine_manager.html ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698