| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_SEARCH_ENGINES_SEARCH_ENGINE_TYPE_H_ | 5 #ifndef CHROME_BROWSER_SEARCH_ENGINES_SEARCH_ENGINE_TYPE_H_ |
| 6 #define CHROME_BROWSER_SEARCH_ENGINES_SEARCH_ENGINE_TYPE_H_ | 6 #define CHROME_BROWSER_SEARCH_ENGINES_SEARCH_ENGINE_TYPE_H_ |
| 7 | 7 |
| 8 // Enum to record the user's default search engine choice in UMA. Add new | 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 | 9 // search engines at the bottom and do not delete from this list, so as not |
| 10 // to disrupt UMA data already recorded. | 10 // to disrupt UMA data already recorded. |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 SEARCH_ENGINE_OK, | 35 SEARCH_ENGINE_OK, |
| 36 SEARCH_ENGINE_POGODAK, | 36 SEARCH_ENGINE_POGODAK, |
| 37 SEARCH_ENGINE_POGODOK_MK, // Defunct. Deletion would corrupt UMA stats. | 37 SEARCH_ENGINE_POGODOK_MK, // Defunct. Deletion would corrupt UMA stats. |
| 38 SEARCH_ENGINE_RAMBLER, | 38 SEARCH_ENGINE_RAMBLER, |
| 39 SEARCH_ENGINE_SANOOK, | 39 SEARCH_ENGINE_SANOOK, |
| 40 SEARCH_ENGINE_SAPO, | 40 SEARCH_ENGINE_SAPO, |
| 41 SEARCH_ENGINE_TUT, | 41 SEARCH_ENGINE_TUT, |
| 42 SEARCH_ENGINE_WALLA, | 42 SEARCH_ENGINE_WALLA, |
| 43 SEARCH_ENGINE_ZOZNAM, | 43 SEARCH_ENGINE_ZOZNAM, |
| 44 SEARCH_ENGINE_YAHOOQC, | 44 SEARCH_ENGINE_YAHOOQC, |
| 45 SEARCH_ENGINE_NONE, // Used by Protector. Putting it at the beginning would | 45 SEARCH_ENGINE_NONE, // Defunct. Deletion would corrupt UMA stats. |
| 46 // corrupt UMA stats. Add new search engines below. | |
| 47 SEARCH_ENGINE_CONDUIT, | 46 SEARCH_ENGINE_CONDUIT, |
| 48 SEARCH_ENGINE_ALL_BY, | 47 SEARCH_ENGINE_ALL_BY, |
| 49 SEARCH_ENGINE_APORT, | 48 SEARCH_ENGINE_APORT, |
| 50 SEARCH_ENGINE_ICQ, | 49 SEARCH_ENGINE_ICQ, |
| 51 SEARCH_ENGINE_METABOT_RU, | 50 SEARCH_ENGINE_METABOT_RU, |
| 52 SEARCH_ENGINE_META_UA, | 51 SEARCH_ENGINE_META_UA, |
| 53 SEARCH_ENGINE_NIGMA, | 52 SEARCH_ENGINE_NIGMA, |
| 54 SEARCH_ENGINE_QIP, | 53 SEARCH_ENGINE_QIP, |
| 55 SEARCH_ENGINE_UKR_NET, | 54 SEARCH_ENGINE_UKR_NET, |
| 56 SEARCH_ENGINE_WEBALTA, | 55 SEARCH_ENGINE_WEBALTA, |
| 57 SEARCH_ENGINE_AVG, | 56 SEARCH_ENGINE_AVG, |
| 58 SEARCH_ENGINE_MAX // Bounding max value needed for UMA histogram macro. | 57 SEARCH_ENGINE_MAX // Bounding max value needed for UMA histogram macro. |
| 59 }; | 58 }; |
| 60 | 59 |
| 61 #endif // CHROME_BROWSER_SEARCH_ENGINES_SEARCH_ENGINE_TYPE_H_ | 60 #endif // CHROME_BROWSER_SEARCH_ENGINES_SEARCH_ENGINE_TYPE_H_ |
| OLD | NEW |