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

Side by Side Diff: rlz/lib/rlz_enums.h

Issue 29873005: Implements RLZ lib for iOS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use correct access points enums on iOS Created 7 years, 2 months 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 | Annotate | Revision Log
OLDNEW
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
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_RESERVED, // Reserved for ChromeOS. 63 CHROMEOS_RESERVED, // Reserved for ChromeOS.
64 64
65 CHROME_IOS_OMNIBOX, // Chrome searches through the address bar omnibox (iOS).
66 CHROME_IOS_HOME_PAGE,// Chrome searches through Google as home page (iOS).
67
65 // Unclaimed access points - should be used first before creating new APs. 68 // Unclaimed access points - should be used first before creating new APs.
66 // Please also make sure you re-name the enum before using an unclaimed value; 69 // Please also make sure you re-name the enum before using an unclaimed value;
67 // this acts as a check to ensure we don't have collisions. 70 // this acts as a check to ensure we don't have collisions.
68 UNDEFINED_AP_M,
69 UNDEFINED_AP_N,
70 UNDEFINED_AP_O, 71 UNDEFINED_AP_O,
71 UNDEFINED_AP_P, 72 UNDEFINED_AP_P,
72 UNDEFINED_AP_Q, 73 UNDEFINED_AP_Q,
73 UNDEFINED_AP_R, 74 UNDEFINED_AP_R,
74 UNDEFINED_AP_S, 75 UNDEFINED_AP_S,
75 UNDEFINED_AP_T, 76 UNDEFINED_AP_T,
76 UNDEFINED_AP_U, 77 UNDEFINED_AP_U,
77 UNDEFINED_AP_V, 78 UNDEFINED_AP_V,
78 UNDEFINED_AP_W, 79 UNDEFINED_AP_W,
79 UNDEFINED_AP_X, 80 UNDEFINED_AP_X,
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 REPORT_RLS, // Report old system "RLS" financial value for this point. 126 REPORT_RLS, // Report old system "RLS" financial value for this point.
126 // New Events should be added here without changing existing enums, 127 // New Events should be added here without changing existing enums,
127 // before LAST_EVENT. 128 // before LAST_EVENT.
128 ACTIVATE, // Product being used for a period of time. 129 ACTIVATE, // Product being used for a period of time.
129 LAST_EVENT 130 LAST_EVENT
130 }; 131 };
131 132
132 } // namespace rlz_lib 133 } // namespace rlz_lib
133 134
134 #endif // RLZ_LIB_RLZ_ENUMS_H_ 135 #endif // RLZ_LIB_RLZ_ENUMS_H_
OLDNEW
« chrome/browser/rlz/rlz.cc ('K') | « rlz/lib/lib_values.cc ('k') | rlz/rlz.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698