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

Side by Side Diff: chrome/browser/search_engines/prepopulated_engines.h

Issue 11377049: Moving prepopulated search engines to a JSON file. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 1 month 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 unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698