| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "ios/chrome/browser/pref_names.h" | 5 #include "ios/chrome/browser/pref_names.h" |
| 6 | 6 |
| 7 namespace prefs { | 7 namespace prefs { |
| 8 | 8 |
| 9 // The value to use for Accept-Languages HTTP header when making an HTTP | 9 // The value to use for Accept-Languages HTTP header when making an HTTP |
| 10 // request. | 10 // request. |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 // String which contains the application version when we last showed the | 132 // String which contains the application version when we last showed the |
| 133 // authorization alert. | 133 // authorization alert. |
| 134 const char kOmniboxGeolocationLastAuthorizationAlertVersion[] = | 134 const char kOmniboxGeolocationLastAuthorizationAlertVersion[] = |
| 135 "ios.omnibox.geolocation_last_authorization_alert_version"; | 135 "ios.omnibox.geolocation_last_authorization_alert_version"; |
| 136 | 136 |
| 137 // Integer which contains the timestamp at which the "Rate This App" dialog was | 137 // Integer which contains the timestamp at which the "Rate This App" dialog was |
| 138 // last shown. | 138 // last shown. |
| 139 const char kRateThisAppDialogLastShownTime[] = | 139 const char kRateThisAppDialogLastShownTime[] = |
| 140 "ios.ratethisapp.dialog_last_shown_time"; | 140 "ios.ratethisapp.dialog_last_shown_time"; |
| 141 | 141 |
| 142 // Integer which indicates which desktop ios promotion initiated sending the SMS |
| 143 // to the user. |
| 144 const char kDesktopIOSPromotionSMSEntryPoint[] = |
| 145 "ios.desktop_ios_promo_sms_entrypoint"; |
| 146 |
| 147 // Integer Which indicates which desktop ios promotions did the user see. |
| 148 const char kDesktopIOSPromotionShownEntryPoints[] = |
| 149 "ios.desktop_ios_promo_shown_entrypoints"; |
| 150 |
| 151 // Last desktop ios promotion impression (If SMS was sent it's the time of |
| 152 // sending the SMS). |
| 153 const char kDesktopIOSPromotionLastImpression[] = |
| 154 "ios.desktop_ios_promo_last_impression"; |
| 155 |
| 156 // True if the user see the promotion, get sms, install and sign into |
| 157 // chrome ios. |
| 158 const char kDesktopIOSPromotionDone[] = "ios.desktop_ios_promo_done"; |
| 159 |
| 142 } // namespace prefs | 160 } // namespace prefs |
| OLD | NEW |