OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // GENERATED FROM THE SCHEMA DEFINITION AND CONTENT IN |
| 6 // chrome/browser/search_engines/prepopulated_engines_schema.json |
| 7 // chrome/browser/search_engines/prepopulated_engines.json |
| 8 // DO NOT EDIT. |
| 9 |
| 10 #ifndef CHROME_BROWSER_SEARCH_ENGINES_PREPOPULATED_ENGINES_H_ |
| 11 #define CHROME_BROWSER_SEARCH_ENGINES_PREPOPULATED_ENGINES_H_ |
| 12 |
| 13 #include "chrome/browser/search_engines/search_engine_type.h" |
| 14 |
| 15 namespace search_engines { |
| 16 |
| 17 struct PrepopulatedEngine { |
| 18 const wchar_t* const name; |
| 19 const wchar_t* const keyword; |
| 20 const char* const favicon_url; |
| 21 const char* const search_url; |
| 22 const char* const encoding; |
| 23 const char* const suggest_url; |
| 24 const char* const instant_url; |
| 25 const char* const alternate_urls; |
| 26 const SearchEngineType type; |
| 27 const int id; |
| 28 }; |
| 29 |
| 30 extern const PrepopulatedEngine altavista; |
| 31 extern const PrepopulatedEngine abcsokk; |
| 32 |
| 33 } // namespace search_engines |
| 34 |
| 35 #endif // CHROME_BROWSER_SEARCH_ENGINES_PREPOPULATED_ENGINES_H_ |
OLD | NEW |