1// Copyright 2014 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#ifndef COMPONENTS_SEARCH_ENGINES_SEARCH_ENGINE_TYPE_H_
6#define COMPONENTS_SEARCH_ENGINES_SEARCH_ENGINE_TYPE_H_
7
8// Enum to record the user's default search engine choice in UMA.  Add new
9// search engines at the bottom and do not delete from this list, so as not
10// to disrupt UMA data already recorded.
11enum SearchEngineType {
12  // Prepopulated engines.
13  SEARCH_ENGINE_OTHER = 0,   // At the top in case of future list changes.
14  SEARCH_ENGINE_AOL,
15  SEARCH_ENGINE_ASK,
16  SEARCH_ENGINE_ATLAS,
17  SEARCH_ENGINE_AVG,
18  SEARCH_ENGINE_BAIDU,
19  SEARCH_ENGINE_BABYLON,
20  SEARCH_ENGINE_BING,
21  SEARCH_ENGINE_CONDUIT,
22  SEARCH_ENGINE_DAUM,
23  SEARCH_ENGINE_DELFI,
24  SEARCH_ENGINE_DELTA,
25  SEARCH_ENGINE_FUNMOODS,
26  SEARCH_ENGINE_GOO,
27  SEARCH_ENGINE_GOOGLE,
28  SEARCH_ENGINE_IMINENT,
29  SEARCH_ENGINE_IMESH,
30  SEARCH_ENGINE_IN,
31  SEARCH_ENGINE_INCREDIBAR,
32  SEARCH_ENGINE_KVASIR,
33  SEARCH_ENGINE_LIBERO,
34  SEARCH_ENGINE_MAILRU,
35  SEARCH_ENGINE_NAJDI,
36  SEARCH_ENGINE_NATE,
37  SEARCH_ENGINE_NAVER,
38  SEARCH_ENGINE_NETI,
39  SEARCH_ENGINE_NIGMA,
40  SEARCH_ENGINE_OK,
41  SEARCH_ENGINE_ONET,
42  SEARCH_ENGINE_RAMBLER,
43  SEARCH_ENGINE_SAPO,
44  SEARCH_ENGINE_SEARCHNU,
45  SEARCH_ENGINE_SEARCH_RESULTS,
46  SEARCH_ENGINE_SEZNAM,
47  SEARCH_ENGINE_SNAPDO,
48  SEARCH_ENGINE_SOFTONIC,
49  SEARCH_ENGINE_SOGOU,
50  SEARCH_ENGINE_SOSO,
51  SEARCH_ENGINE_SWEETPACKS,
52  SEARCH_ENGINE_TERRA,
53  SEARCH_ENGINE_TUT,
54  SEARCH_ENGINE_VINDEN,
55  SEARCH_ENGINE_VIRGILIO,
56  SEARCH_ENGINE_WALLA,
57  SEARCH_ENGINE_WP,
58  SEARCH_ENGINE_YAHOO,
59  SEARCH_ENGINE_YANDEX,
60  SEARCH_ENGINE_ZOZNAM,
61  SEARCH_ENGINE_MAX          // Bounding value needed for UMA histogram macro.
62};
63
64#endif  // COMPONENTS_SEARCH_ENGINES_SEARCH_ENGINE_TYPE_H_
65