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 ios { | 7 namespace ios { |
8 namespace prefs { | 8 namespace prefs { |
9 | 9 |
10 // Preferences in ios::prefs:: must have the same value as the corresponding | 10 // Preferences in ios::prefs:: must have the same value as the corresponding |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
82 // for Omnibox queries or the progress towards soliciting the user's | 82 // for Omnibox queries or the progress towards soliciting the user's |
83 // authorization. | 83 // authorization. |
84 extern const char kOmniboxGeolocationAuthorizationState[] = | 84 extern const char kOmniboxGeolocationAuthorizationState[] = |
85 "ios.omnibox.geolocation_authorization_state"; | 85 "ios.omnibox.geolocation_authorization_state"; |
86 | 86 |
87 // String which contains the application version when we last showed the | 87 // String which contains the application version when we last showed the |
88 // authorization alert. | 88 // authorization alert. |
89 extern const char kOmniboxGeolocationLastAuthorizationAlertVersion[] = | 89 extern const char kOmniboxGeolocationLastAuthorizationAlertVersion[] = |
90 "ios.omnibox.geolocation_last_authorization_alert_version"; | 90 "ios.omnibox.geolocation_last_authorization_alert_version"; |
91 | 91 |
92 // Number of seconds from 1970 when the doodle expires. | |
93 extern const char kDoodleExpirationTimeInSeconds[] = | |
94 "ios.doodle.expiration_time.seconds"; | |
95 | |
96 // The URL to navigate to when the user taps the doodle. | |
97 extern const char kDoodleHref[] = "ios.doodle.href"; | |
98 | |
99 // Number of seconds from 1970 since the last time a doodle was requested. | |
100 extern const char kDoodleLastRequestTimeInSeconds[] = | |
101 "ios.doodle.last_request_time.seconds"; | |
102 | |
103 // The alternative text for the doodle. | |
104 extern const char kDoodleAltText[] = "ios.doodle.alttext"; | |
105 | |
106 } // namespace prefs | 92 } // namespace prefs |
OLD | NEW |