| 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 1482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1493 const char kDevToolsPortForwardingConfig[] = "devtools.port_forwarding_config"; | 1493 const char kDevToolsPortForwardingConfig[] = "devtools.port_forwarding_config"; |
| 1494 | 1494 |
| 1495 // A dictionary with generic DevTools settings. | 1495 // A dictionary with generic DevTools settings. |
| 1496 const char kDevToolsPreferences[] = "devtools.preferences"; | 1496 const char kDevToolsPreferences[] = "devtools.preferences"; |
| 1497 | 1497 |
| 1498 #if defined(OS_ANDROID) | 1498 #if defined(OS_ANDROID) |
| 1499 // A boolean specifying whether remote dev tools debugging is enabled. | 1499 // A boolean specifying whether remote dev tools debugging is enabled. |
| 1500 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; | 1500 const char kDevToolsRemoteEnabled[] = "devtools.remote_enabled"; |
| 1501 #endif | 1501 #endif |
| 1502 | 1502 |
| 1503 // Boolean indicating that TiclInvalidationService should use GCM channel. | |
| 1504 // False or lack of settings means XMPPPushClient channel. | |
| 1505 const char kInvalidationServiceUseGCMChannel[] = | |
| 1506 "invalidation_service.use_gcm_channel"; | |
| 1507 | |
| 1508 // Local hash of authentication password, used for off-line authentication | 1503 // Local hash of authentication password, used for off-line authentication |
| 1509 // when on-line authentication is not available. | 1504 // when on-line authentication is not available. |
| 1510 const char kGoogleServicesPasswordHash[] = "google.services.password_hash"; | 1505 const char kGoogleServicesPasswordHash[] = "google.services.password_hash"; |
| 1511 | 1506 |
| 1512 #if !defined(OS_ANDROID) && !defined(OS_IOS) | 1507 #if !defined(OS_ANDROID) && !defined(OS_IOS) |
| 1513 // Tracks the number of times that we have shown the sign in promo at startup. | 1508 // Tracks the number of times that we have shown the sign in promo at startup. |
| 1514 const char kSignInPromoStartupCount[] = "sync_promo.startup_count"; | 1509 const char kSignInPromoStartupCount[] = "sync_promo.startup_count"; |
| 1515 | 1510 |
| 1516 // Boolean tracking whether the user chose to skip the sign in promo. | 1511 // Boolean tracking whether the user chose to skip the sign in promo. |
| 1517 const char kSignInPromoUserSkipped[] = "sync_promo.user_skipped"; | 1512 const char kSignInPromoUserSkipped[] = "sync_promo.user_skipped"; |
| (...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2182 "supervised_users.whitelists"; | 2177 "supervised_users.whitelists"; |
| 2183 | 2178 |
| 2184 #if defined(ENABLE_EXTENSIONS) | 2179 #if defined(ENABLE_EXTENSIONS) |
| 2185 // Policy that indicates how to handle animated images. | 2180 // Policy that indicates how to handle animated images. |
| 2186 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; | 2181 const char kAnimationPolicy[] = "settings.a11y.animation_policy"; |
| 2187 #endif | 2182 #endif |
| 2188 | 2183 |
| 2189 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; | 2184 const char kBackgroundTracingLastUpload[] = "background_tracing.last_upload"; |
| 2190 | 2185 |
| 2191 } // namespace prefs | 2186 } // namespace prefs |
| OLD | NEW |