| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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). | 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). | 59 CHROME_MAC_HOME_PAGE,// Chrome searches through Google as home page (Mac). |
| 60 | 60 |
| 61 CHROMEOS_OMNIBOX, // ChromeOS searches through the address bar omnibox. | 61 CHROMEOS_OMNIBOX, // ChromeOS searches through the address bar omnibox. |
| 62 CHROMEOS_HOME_PAGE, // ChromeOS searches through Google as home page. | 62 CHROMEOS_HOME_PAGE, // ChromeOS searches through Google as home page. |
| 63 CHROMEOS_APP_LIST, // ChromeOS searches through the app launcher search box. | 63 CHROMEOS_APP_LIST, // ChromeOS searches through the app launcher search box. |
| 64 | 64 |
| 65 CHROME_IOS_OMNIBOX, // Chrome searches through the address bar omnibox (iOS). | 65 // Chrome searches through the address bar omnibox (iOS) on tablet or phone. |
| 66 CHROME_IOS_RESERVED, // Reserved for Chrome on iOS. | 66 CHROME_IOS_OMNIBOX_TABLET, |
| 67 CHROME_IOS_OMNIBOX_MOBILE, |
| 67 | 68 |
| 68 CHROME_APP_LIST, // Chrome searches through the app launcher search box. | 69 CHROME_APP_LIST, // Chrome searches through the app launcher search box. |
| 69 CHROME_MAC_APP_LIST, // Chrome searches through the app launcher search box | 70 CHROME_MAC_APP_LIST, // Chrome searches through the app launcher search box |
| 70 // (Mac). | 71 // (Mac). |
| 71 | 72 |
| 72 // Unclaimed access points - should be used first before creating new APs. | 73 // Unclaimed access points - should be used first before creating new APs. |
| 73 // Please also make sure you re-name the enum before using an unclaimed value; | 74 // Please also make sure you re-name the enum before using an unclaimed value; |
| 74 // this acts as a check to ensure we don't have collisions. | 75 // this acts as a check to ensure we don't have collisions. |
| 75 UNDEFINED_AP_Q, | 76 UNDEFINED_AP_Q, |
| 76 UNDEFINED_AP_R, | 77 UNDEFINED_AP_R, |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 REPORT_RLS, // Report old system "RLS" financial value for this point. | 129 REPORT_RLS, // Report old system "RLS" financial value for this point. |
| 129 // New Events should be added here without changing existing enums, | 130 // New Events should be added here without changing existing enums, |
| 130 // before LAST_EVENT. | 131 // before LAST_EVENT. |
| 131 ACTIVATE, // Product being used for a period of time. | 132 ACTIVATE, // Product being used for a period of time. |
| 132 LAST_EVENT | 133 LAST_EVENT |
| 133 }; | 134 }; |
| 134 | 135 |
| 135 } // namespace rlz_lib | 136 } // namespace rlz_lib |
| 136 | 137 |
| 137 #endif // RLZ_LIB_RLZ_ENUMS_H_ | 138 #endif // RLZ_LIB_RLZ_ENUMS_H_ |
| OLD | NEW |