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 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 1212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1223 | 1223 |
1224 // Enable notifications for new devices on the local network that can be | 1224 // Enable notifications for new devices on the local network that can be |
1225 // registered to the user's account, e.g. Google Cloud Print printers. | 1225 // registered to the user's account, e.g. Google Cloud Print printers. |
1226 const char kLocalDiscoveryNotificationsEnabled[] = | 1226 const char kLocalDiscoveryNotificationsEnabled[] = |
1227 "local_discovery.notifications_enabled"; | 1227 "local_discovery.notifications_enabled"; |
1228 | 1228 |
1229 // A timestamp (stored in base::Time::ToInternalValue format) of the last time | 1229 // A timestamp (stored in base::Time::ToInternalValue format) of the last time |
1230 // a preference was reset. | 1230 // a preference was reset. |
1231 const char kPreferenceResetTime[] = "prefs.preference_reset_time"; | 1231 const char kPreferenceResetTime[] = "prefs.preference_reset_time"; |
1232 | 1232 |
| 1233 // String that indicates if the Profile Reset prompt has already been shown to |
| 1234 // the user. Used both in user preferences and local state, in the latter, it is |
| 1235 // actually a dictionary that maps profile keys to before-mentioned strings. |
| 1236 const char kProfileResetPromptMemento[] = "profile.reset_prompt_memento"; |
| 1237 |
1233 // The GCM channel's enabled state. | 1238 // The GCM channel's enabled state. |
1234 const char kGCMChannelEnabled[] = "gcm.channel_enabled"; | 1239 const char kGCMChannelEnabled[] = "gcm.channel_enabled"; |
1235 | 1240 |
1236 // How many Service Workers are registered with the Push API (could be zero). | 1241 // How many Service Workers are registered with the Push API (could be zero). |
1237 const char kPushMessagingRegistrationCount[] = | 1242 const char kPushMessagingRegistrationCount[] = |
1238 "gcm.push_messaging_registration_count"; | 1243 "gcm.push_messaging_registration_count"; |
1239 | 1244 |
1240 // Whether Easy Unlock is enabled. | 1245 // Whether Easy Unlock is enabled. |
1241 const char kEasyUnlockEnabled[] = "easy_unlock.enabled"; | 1246 const char kEasyUnlockEnabled[] = "easy_unlock.enabled"; |
1242 | 1247 |
(...skipping 1085 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2328 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2333 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
2329 #endif | 2334 #endif |
2330 | 2335 |
2331 // Whether DNS Quick Check is disabled in proxy resolution. | 2336 // Whether DNS Quick Check is disabled in proxy resolution. |
2332 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2337 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2333 | 2338 |
2334 // Whether Guest Mode is enabled within the browser. | 2339 // Whether Guest Mode is enabled within the browser. |
2335 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; | 2340 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; |
2336 | 2341 |
2337 } // namespace prefs | 2342 } // namespace prefs |
OLD | NEW |