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 1285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1296 "local_discovery.notifications_enabled"; | 1296 "local_discovery.notifications_enabled"; |
1297 | 1297 |
1298 // String that indicates if the Profile Reset prompt has already been shown to | 1298 // String that indicates if the Profile Reset prompt has already been shown to |
1299 // the user. Used both in user preferences and local state, in the latter, it is | 1299 // the user. Used both in user preferences and local state, in the latter, it is |
1300 // actually a dictionary that maps profile keys to before-mentioned strings. | 1300 // actually a dictionary that maps profile keys to before-mentioned strings. |
1301 const char kProfileResetPromptMemento[] = "profile.reset_prompt_memento"; | 1301 const char kProfileResetPromptMemento[] = "profile.reset_prompt_memento"; |
1302 | 1302 |
1303 // The GCM channel's enabled state. | 1303 // The GCM channel's enabled state. |
1304 const char kGCMChannelEnabled[] = "gcm.channel_enabled"; | 1304 const char kGCMChannelEnabled[] = "gcm.channel_enabled"; |
1305 | 1305 |
1306 // Apps that use GCM. | |
Nicolas Zea
2014/02/13 01:24:59
nit: I think "Registered GCM application ids" is c
| |
1307 const char kGCMApps[] = "gcm.apps"; | |
1308 | |
1306 // *************** LOCAL STATE *************** | 1309 // *************** LOCAL STATE *************** |
1307 // These are attached to the machine/installation | 1310 // These are attached to the machine/installation |
1308 | 1311 |
1309 // A pref to configure networks device-wide. Its value must be a list of | 1312 // A pref to configure networks device-wide. Its value must be a list of |
1310 // NetworkConfigurations according to the OpenNetworkConfiguration | 1313 // NetworkConfigurations according to the OpenNetworkConfiguration |
1311 // specification. | 1314 // specification. |
1312 // Currently, this pref is only used to store the policy. The user's | 1315 // Currently, this pref is only used to store the policy. The user's |
1313 // configuration is still stored in Shill. | 1316 // configuration is still stored in Shill. |
1314 const char kDeviceOpenNetworkConfiguration[] = "device_onc"; | 1317 const char kDeviceOpenNetworkConfiguration[] = "device_onc"; |
1315 | 1318 |
(...skipping 1352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2668 | 2671 |
2669 // The number of seconds since epoch that the OS password was last changed. | 2672 // The number of seconds since epoch that the OS password was last changed. |
2670 const char kOsPasswordLastChanged[] = | 2673 const char kOsPasswordLastChanged[] = |
2671 "password_manager.os_password_last_changed"; | 2674 "password_manager.os_password_last_changed"; |
2672 #endif | 2675 #endif |
2673 | 2676 |
2674 // Whether DNS Quick Check is disabled in proxy resolution. | 2677 // Whether DNS Quick Check is disabled in proxy resolution. |
2675 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2678 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2676 | 2679 |
2677 } // namespace prefs | 2680 } // namespace prefs |
OLD | NEW |