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 // Key and value names of the location of the RLZ shared state. | 5 // Key and value names of the location of the RLZ shared state. |
6 | 6 |
7 #include "rlz/lib/lib_values.h" | 7 #include "rlz/lib/lib_values.h" |
8 | 8 |
9 #include "base/strings/stringprintf.h" | 9 #include "base/strings/stringprintf.h" |
10 #include "rlz/lib/assert.h" | 10 #include "rlz/lib/assert.h" |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 case PARTNER_AP_1: return "V1"; | 91 case PARTNER_AP_1: return "V1"; |
92 case PARTNER_AP_2: return "V2"; | 92 case PARTNER_AP_2: return "V2"; |
93 case PARTNER_AP_3: return "V3"; | 93 case PARTNER_AP_3: return "V3"; |
94 case PARTNER_AP_4: return "V4"; | 94 case PARTNER_AP_4: return "V4"; |
95 case PARTNER_AP_5: return "V5"; | 95 case PARTNER_AP_5: return "V5"; |
96 case CHROME_MAC_OMNIBOX: return "C5"; | 96 case CHROME_MAC_OMNIBOX: return "C5"; |
97 case CHROME_MAC_HOME_PAGE: return "C6"; | 97 case CHROME_MAC_HOME_PAGE: return "C6"; |
98 case CHROMEOS_OMNIBOX: return "CA"; | 98 case CHROMEOS_OMNIBOX: return "CA"; |
99 case CHROMEOS_HOME_PAGE: return "CB"; | 99 case CHROMEOS_HOME_PAGE: return "CB"; |
100 case CHROMEOS_RESERVED: return "CC"; | 100 case CHROMEOS_RESERVED: return "CC"; |
101 case UNDEFINED_AP_M: return "RM"; | 101 case CHROME_IOS_OMNIBOX: return "RM"; |
102 case UNDEFINED_AP_N: return "RN"; | 102 case CHROME_IOS_HOME_PAGE: return "RN"; |
103 case UNDEFINED_AP_O: return "RO"; | 103 case UNDEFINED_AP_O: return "RO"; |
104 case UNDEFINED_AP_P: return "RP"; | 104 case UNDEFINED_AP_P: return "RP"; |
105 case UNDEFINED_AP_Q: return "RQ"; | 105 case UNDEFINED_AP_Q: return "RQ"; |
106 case UNDEFINED_AP_R: return "RR"; | 106 case UNDEFINED_AP_R: return "RR"; |
107 case UNDEFINED_AP_S: return "RS"; | 107 case UNDEFINED_AP_S: return "RS"; |
108 case UNDEFINED_AP_T: return "RT"; | 108 case UNDEFINED_AP_T: return "RT"; |
109 case UNDEFINED_AP_U: return "RU"; | 109 case UNDEFINED_AP_U: return "RU"; |
110 case UNDEFINED_AP_V: return "RV"; | 110 case UNDEFINED_AP_V: return "RV"; |
111 case UNDEFINED_AP_W: return "RW"; | 111 case UNDEFINED_AP_W: return "RW"; |
112 case UNDEFINED_AP_X: return "RX"; | 112 case UNDEFINED_AP_X: return "RX"; |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 case WEBAPPS: return "W"; | 199 case WEBAPPS: return "W"; |
200 case PINYIN_IME: return "N"; | 200 case PINYIN_IME: return "N"; |
201 case PARTNER: return "V"; | 201 case PARTNER: return "V"; |
202 } | 202 } |
203 | 203 |
204 ASSERT_STRING("GetProductName: Unknown Product"); | 204 ASSERT_STRING("GetProductName: Unknown Product"); |
205 return ""; | 205 return ""; |
206 } | 206 } |
207 | 207 |
208 } // namespace rlz_lib | 208 } // namespace rlz_lib |
OLD | NEW |