Index: chrome/browser/search_engines/prepopulated_engines.h |
diff --git a/chrome/browser/search_engines/prepopulated_engines.h b/chrome/browser/search_engines/prepopulated_engines.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5cedfef514cb5e3a94cf297abf066821fb2984fa |
--- /dev/null |
+++ b/chrome/browser/search_engines/prepopulated_engines.h |
@@ -0,0 +1,37 @@ |
+// Copyright (c) 2012 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. |
+ |
+// GENERATED FROM THE SCHEMA DEFINITION AND CONTENT IN |
+// chrome/browser/search_engines/prepopulated_engines_schema.json |
+// chrome/browser/search_engines/prepopulated_engines.json |
+// DO NOT EDIT. |
+ |
+#ifndef CHROME_BROWSER_SEARCH_ENGINES_PREPOPULATED_ENGINES_H_ |
+#define CHROME_BROWSER_SEARCH_ENGINES_PREPOPULATED_ENGINES_H_ |
+ |
+#include "chrome/browser/search_engines/search_engine_type.h" |
+ |
+namespace TemplateURLPrepopulateData { |
+ |
+struct PrepopulatedEngine { |
+ const wchar_t* const name; |
+ const wchar_t* const keyword; |
+ const char* const favicon_url; |
+ const char* const search_url; |
+ const char* const encoding; |
+ const char* const suggest_url; |
+ const char* const instant_url; |
+ const char* const alternate_urls; |
+ const SearchEngineType type; |
+ const int id; |
+}; |
+ |
+extern const int kCurrentDataVersion; |
+extern const PrepopulatedEngine google; |
+extern const PrepopulatedEngine altavista; |
+extern const PrepopulatedEngine abcsok; |
+ |
+} // namespace TemplateURLPrepopulateData |
+ |
+#endif // CHROME_BROWSER_SEARCH_ENGINES_PREPOPULATED_ENGINES_H_ |