| 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 1276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1287 | 1287 |
| 1288 // String that indicates if the Profile Reset prompt has already been shown to | 1288 // String that indicates if the Profile Reset prompt has already been shown to |
| 1289 // the user. Used both in user preferences and local state, in the latter, it is | 1289 // the user. Used both in user preferences and local state, in the latter, it is |
| 1290 // actually a dictionary that maps profile keys to before-mentioned strings. | 1290 // actually a dictionary that maps profile keys to before-mentioned strings. |
| 1291 const char kProfileResetPromptMemento[] = "profile.reset_prompt_memento"; | 1291 const char kProfileResetPromptMemento[] = "profile.reset_prompt_memento"; |
| 1292 | 1292 |
| 1293 // Stores the check-in info retrieved from the GCM server. | 1293 // Stores the check-in info retrieved from the GCM server. |
| 1294 const char kGCMUserAccountID[] = "gcm.user.account_id"; | 1294 const char kGCMUserAccountID[] = "gcm.user.account_id"; |
| 1295 const char kGCMUserToken[] = "gcm.user.token"; | 1295 const char kGCMUserToken[] = "gcm.user.token"; |
| 1296 | 1296 |
| 1297 // Whitelist of Native Messaging Hosts. |
| 1298 const char kNativeMessagingBlacklist[] = "native_messaging.blacklist"; |
| 1299 const char kNativeMessagingWhitelist[] = "native_messaging.whitelist"; |
| 1300 |
| 1297 // *************** LOCAL STATE *************** | 1301 // *************** LOCAL STATE *************** |
| 1298 // These are attached to the machine/installation | 1302 // These are attached to the machine/installation |
| 1299 | 1303 |
| 1300 // A pref to configure networks device-wide. Its value must be a list of | 1304 // A pref to configure networks device-wide. Its value must be a list of |
| 1301 // NetworkConfigurations according to the OpenNetworkConfiguration | 1305 // NetworkConfigurations according to the OpenNetworkConfiguration |
| 1302 // specification. | 1306 // specification. |
| 1303 // Currently, this pref is only used to store the policy. The user's | 1307 // Currently, this pref is only used to store the policy. The user's |
| 1304 // configuration is still stored in Shill. | 1308 // configuration is still stored in Shill. |
| 1305 const char kDeviceOpenNetworkConfiguration[] = "device_onc"; | 1309 const char kDeviceOpenNetworkConfiguration[] = "device_onc"; |
| 1306 | 1310 |
| (...skipping 1365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2672 // on or before the value contained in kOsPasswordLastChanged. | 2676 // on or before the value contained in kOsPasswordLastChanged. |
| 2673 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; | 2677 const char kOsPasswordBlank[] = "password_manager.os_password_blank"; |
| 2674 | 2678 |
| 2675 // The number of seconds since epoch that the OS password was last changed. | 2679 // The number of seconds since epoch that the OS password was last changed. |
| 2676 const char kOsPasswordLastChanged[] = | 2680 const char kOsPasswordLastChanged[] = |
| 2677 "password_manager.os_password_last_changed"; | 2681 "password_manager.os_password_last_changed"; |
| 2678 #endif | 2682 #endif |
| 2679 | 2683 |
| 2680 // Whether DNS Quick Check is disabled in proxy resolution. | 2684 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2681 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2685 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2686 |
| 2682 } // namespace prefs | 2687 } // namespace prefs |
| OLD | NEW |