| 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 1148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1159 // Boolean pref that determines whether the user can enter fullscreen mode. | 1159 // Boolean pref that determines whether the user can enter fullscreen mode. |
| 1160 // Disabling fullscreen mode also makes kiosk mode unavailable on desktop | 1160 // Disabling fullscreen mode also makes kiosk mode unavailable on desktop |
| 1161 // platforms. | 1161 // platforms. |
| 1162 const char kFullscreenAllowed[] = "fullscreen.allowed"; | 1162 const char kFullscreenAllowed[] = "fullscreen.allowed"; |
| 1163 | 1163 |
| 1164 // Enable notifications for new devices on the local network that can be | 1164 // Enable notifications for new devices on the local network that can be |
| 1165 // registered to the user's account, e.g. Google Cloud Print printers. | 1165 // registered to the user's account, e.g. Google Cloud Print printers. |
| 1166 const char kLocalDiscoveryNotificationsEnabled[] = | 1166 const char kLocalDiscoveryNotificationsEnabled[] = |
| 1167 "local_discovery.notifications_enabled"; | 1167 "local_discovery.notifications_enabled"; |
| 1168 | 1168 |
| 1169 // A timestamp (stored in base::Time::ToInternalValue format) of the last time | |
| 1170 // a preference was reset. | |
| 1171 const char kPreferenceResetTime[] = "prefs.preference_reset_time"; | |
| 1172 | |
| 1173 // How many Service Workers are registered with the Push API (could be zero). | 1169 // How many Service Workers are registered with the Push API (could be zero). |
| 1174 const char kPushMessagingRegistrationCount[] = | 1170 const char kPushMessagingRegistrationCount[] = |
| 1175 "gcm.push_messaging_registration_count"; | 1171 "gcm.push_messaging_registration_count"; |
| 1176 | 1172 |
| 1177 // Maps from app ids to origin + Service Worker registration ID. | 1173 // Maps from app ids to origin + Service Worker registration ID. |
| 1178 const char kPushMessagingAppIdentifierMap[] = | 1174 const char kPushMessagingAppIdentifierMap[] = |
| 1179 "gcm.push_messaging_application_id_map"; | 1175 "gcm.push_messaging_application_id_map"; |
| 1180 | 1176 |
| 1181 // Whether a user is allowed to use Easy Unlock. | 1177 // Whether a user is allowed to use Easy Unlock. |
| 1182 const char kEasyUnlockAllowed[] = "easy_unlock.allowed"; | 1178 const char kEasyUnlockAllowed[] = "easy_unlock.allowed"; |
| (...skipping 1081 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2264 "supervised_users.whitelists"; | 2260 "supervised_users.whitelists"; |
| 2265 | 2261 |
| 2266 #if defined(ENABLE_EXTENSIONS) | 2262 #if defined(ENABLE_EXTENSIONS) |
| 2267 // Policy that indicates how to handle animated images. | 2263 // Policy that indicates how to handle animated images. |
| 2268 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2264 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
| 2269 #endif | 2265 #endif |
| 2270 | 2266 |
| 2271 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2267 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
| 2272 | 2268 |
| 2273 } // namespace prefs | 2269 } // namespace prefs |
| OLD | NEW |