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 1293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1304 // Enable notifications for new devices on the local network that can be | 1304 // Enable notifications for new devices on the local network that can be |
1305 // registered to the user's account, e.g. Google Cloud Print printers. | 1305 // registered to the user's account, e.g. Google Cloud Print printers. |
1306 const char kLocalDiscoveryNotificationsEnabled[] = | 1306 const char kLocalDiscoveryNotificationsEnabled[] = |
1307 "local_discovery.notifications_enabled"; | 1307 "local_discovery.notifications_enabled"; |
1308 | 1308 |
1309 // String that indicates if the Profile Reset prompt has already been shown to | 1309 // String that indicates if the Profile Reset prompt has already been shown to |
1310 // the user. Used both in user preferences and local state, in the latter, it is | 1310 // the user. Used both in user preferences and local state, in the latter, it is |
1311 // actually a dictionary that maps profile keys to before-mentioned strings. | 1311 // actually a dictionary that maps profile keys to before-mentioned strings. |
1312 const char kProfileResetPromptMemento[] = "profile.reset_prompt_memento"; | 1312 const char kProfileResetPromptMemento[] = "profile.reset_prompt_memento"; |
1313 | 1313 |
| 1314 // A timestamp (stored in base::Time::ToInternalValue format) of the last time |
| 1315 // a preference was reset. |
| 1316 const char kProfilePreferenceResetTime[] = "profile.preference_reset_time"; |
| 1317 |
1314 // Stores the check-in info retrieved from the GCM server. | 1318 // Stores the check-in info retrieved from the GCM server. |
1315 const char kGCMUserAccountID[] = "gcm.user.account_id"; | 1319 const char kGCMUserAccountID[] = "gcm.user.account_id"; |
1316 const char kGCMUserToken[] = "gcm.user.token"; | 1320 const char kGCMUserToken[] = "gcm.user.token"; |
1317 | 1321 |
1318 // *************** LOCAL STATE *************** | 1322 // *************** LOCAL STATE *************** |
1319 // These are attached to the machine/installation | 1323 // These are attached to the machine/installation |
1320 | 1324 |
1321 // A pref to configure networks device-wide. Its value must be a list of | 1325 // A pref to configure networks device-wide. Its value must be a list of |
1322 // NetworkConfigurations according to the OpenNetworkConfiguration | 1326 // NetworkConfigurations according to the OpenNetworkConfiguration |
1323 // specification. | 1327 // specification. |
(...skipping 1326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2650 | 2654 |
2651 // The number of seconds since epoch that the OS password was last changed. | 2655 // The number of seconds since epoch that the OS password was last changed. |
2652 const char kOsPasswordLastChanged[] = | 2656 const char kOsPasswordLastChanged[] = |
2653 "password_manager.os_password_last_changed"; | 2657 "password_manager.os_password_last_changed"; |
2654 #endif | 2658 #endif |
2655 | 2659 |
2656 // Whether DNS Quick Check is disabled in proxy resolution. | 2660 // Whether DNS Quick Check is disabled in proxy resolution. |
2657 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2661 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2658 | 2662 |
2659 } // namespace prefs | 2663 } // namespace prefs |
OLD | NEW |