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

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

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 #include <stdio.h>
11
12 #include "chrome/browser/search_engines/prepopulated_engines.h"
13
14 namespace search_engines {
15
16 const PrepopulatedEngine altavista = {
17 L"AltaVista",
18 L"altavista.com",
19 "http://www.altavista.com/favicon.ico",
20 "http://www.altavista.com/web/results?q={searchTerms}",
21 "UTF-8",
22 NULL,
23 NULL,
24 NULL,
25 SEARCH_ENGINE_ALTAVISTA,
26 89,
27 };
28
29 const PrepopulatedEngine abcsokk = {
30 L"ABC S\x00f8k",
31 L"abcsok.no",
32 "http://abcsok.no/favicon.ico",
33 "http://abcsok.no/index.html?q={searchTerms}",
34 "UTF-8",
35 NULL,
36 NULL,
37 NULL,
38 SEARCH_ENGINE_ABCSOK,
39 72,
40 };
41
42 } // namespace search_engines
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698