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. |
+ }, |
+}; |