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 RLZ_LIB_RLZ_ENUMS_H_ | 5 #ifndef RLZ_LIB_RLZ_ENUMS_H_ |
6 #define RLZ_LIB_RLZ_ENUMS_H_ | 6 #define RLZ_LIB_RLZ_ENUMS_H_ |
7 | 7 |
8 namespace rlz_lib { | 8 namespace rlz_lib { |
9 | 9 |
10 // An Access Point offers a way to search using Google. | 10 // An Access Point offers a way to search using Google. |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 TB8_SEARCH_BOX, // IE/FF Toolbar search box. | 48 TB8_SEARCH_BOX, // IE/FF Toolbar search box. |
49 CHROME_FRAME, // Chrome Frame. | 49 CHROME_FRAME, // Chrome Frame. |
50 | 50 |
51 // Partner access points. | 51 // Partner access points. |
52 PARTNER_AP_1, | 52 PARTNER_AP_1, |
53 PARTNER_AP_2, | 53 PARTNER_AP_2, |
54 PARTNER_AP_3, | 54 PARTNER_AP_3, |
55 PARTNER_AP_4, | 55 PARTNER_AP_4, |
56 PARTNER_AP_5, | 56 PARTNER_AP_5, |
57 | 57 |
| 58 CHROME_MAC_OMNIBOX, // Chrome searches through the address bar omnibox (mac). |
| 59 CHROME_MAC_HOME_PAGE,// Chrome searches through Google as home page (mac). |
| 60 |
58 // Unclaimed access points - should be used first before creating new APs. | 61 // Unclaimed access points - should be used first before creating new APs. |
59 // Please also make sure you re-name the enum before using an unclaimed value; | 62 // Please also make sure you re-name the enum before using an unclaimed value; |
60 // this acts as a check to ensure we don't have collisions. | 63 // this acts as a check to ensure we don't have collisions. |
61 UNDEFINED_AP_H, | |
62 UNDEFINED_AP_I, | |
63 UNDEFINED_AP_J, | 64 UNDEFINED_AP_J, |
64 UNDEFINED_AP_K, | 65 UNDEFINED_AP_K, |
65 UNDEFINED_AP_L, | 66 UNDEFINED_AP_L, |
66 UNDEFINED_AP_M, | 67 UNDEFINED_AP_M, |
67 UNDEFINED_AP_N, | 68 UNDEFINED_AP_N, |
68 UNDEFINED_AP_O, | 69 UNDEFINED_AP_O, |
69 UNDEFINED_AP_P, | 70 UNDEFINED_AP_P, |
70 UNDEFINED_AP_Q, | 71 UNDEFINED_AP_Q, |
71 UNDEFINED_AP_R, | 72 UNDEFINED_AP_R, |
72 UNDEFINED_AP_S, | 73 UNDEFINED_AP_S, |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 REPORT_RLS, // Report old system "RLS" financial value for this point. | 124 REPORT_RLS, // Report old system "RLS" financial value for this point. |
124 // New Events should be added here without changing existing enums, | 125 // New Events should be added here without changing existing enums, |
125 // before LAST_EVENT. | 126 // before LAST_EVENT. |
126 ACTIVATE, // Product being used for a period of time. | 127 ACTIVATE, // Product being used for a period of time. |
127 LAST_EVENT | 128 LAST_EVENT |
128 }; | 129 }; |
129 | 130 |
130 } // namespace rlz_lib | 131 } // namespace rlz_lib |
131 | 132 |
132 #endif // RLZ_LIB_RLZ_ENUMS_H_ | 133 #endif // RLZ_LIB_RLZ_ENUMS_H_ |
OLD | NEW |