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 1140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1151 // Boolean pref that determines whether the user can enter fullscreen mode. | 1151 // Boolean pref that determines whether the user can enter fullscreen mode. |
1152 // Disabling fullscreen mode also makes kiosk mode unavailable on desktop | 1152 // Disabling fullscreen mode also makes kiosk mode unavailable on desktop |
1153 // platforms. | 1153 // platforms. |
1154 const char kFullscreenAllowed[] = "fullscreen.allowed"; | 1154 const char kFullscreenAllowed[] = "fullscreen.allowed"; |
1155 | 1155 |
1156 // Enable notifications for new devices on the local network that can be | 1156 // Enable notifications for new devices on the local network that can be |
1157 // registered to the user's account, e.g. Google Cloud Print printers. | 1157 // registered to the user's account, e.g. Google Cloud Print printers. |
1158 const char kLocalDiscoveryNotificationsEnabled[] = | 1158 const char kLocalDiscoveryNotificationsEnabled[] = |
1159 "local_discovery.notifications_enabled"; | 1159 "local_discovery.notifications_enabled"; |
1160 | 1160 |
1161 // A timestamp (stored in base::Time::ToInternalValue format) of the last time | |
1162 // a preference was reset. | |
1163 const char kPreferenceResetTime[] = "prefs.preference_reset_time"; | |
1164 | |
1165 // How many Service Workers are registered with the Push API (could be zero). | 1161 // How many Service Workers are registered with the Push API (could be zero). |
1166 const char kPushMessagingRegistrationCount[] = | 1162 const char kPushMessagingRegistrationCount[] = |
1167 "gcm.push_messaging_registration_count"; | 1163 "gcm.push_messaging_registration_count"; |
1168 | 1164 |
1169 // Maps from app ids to origin + Service Worker registration ID. | 1165 // Maps from app ids to origin + Service Worker registration ID. |
1170 const char kPushMessagingAppIdentifierMap[] = | 1166 const char kPushMessagingAppIdentifierMap[] = |
1171 "gcm.push_messaging_application_id_map"; | 1167 "gcm.push_messaging_application_id_map"; |
1172 | 1168 |
1173 // Whether a user is allowed to use Easy Unlock. | 1169 // Whether a user is allowed to use Easy Unlock. |
1174 const char kEasyUnlockAllowed[] = "easy_unlock.allowed"; | 1170 const char kEasyUnlockAllowed[] = "easy_unlock.allowed"; |
(...skipping 1073 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2248 "supervised_users.whitelists"; | 2244 "supervised_users.whitelists"; |
2249 | 2245 |
2250 #if defined(ENABLE_EXTENSIONS) | 2246 #if defined(ENABLE_EXTENSIONS) |
2251 // Policy that indicates how to handle animated images. | 2247 // Policy that indicates how to handle animated images. |
2252 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2248 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
2253 #endif | 2249 #endif |
2254 | 2250 |
2255 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2251 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
2256 | 2252 |
2257 } // namespace prefs | 2253 } // namespace prefs |
OLD | NEW |