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 // Constants for the names of various preferences, for easier changing. | 5 // Constants for the names of various preferences, for easier changing. |
6 | 6 |
7 #ifndef CHROME_COMMON_PREF_NAMES_H_ | 7 #ifndef CHROME_COMMON_PREF_NAMES_H_ |
8 #define CHROME_COMMON_PREF_NAMES_H_ | 8 #define CHROME_COMMON_PREF_NAMES_H_ |
9 | 9 |
10 #include <stddef.h> | 10 #include <stddef.h> |
(...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 extern const char kNotificationsVibrateEnabled[]; | 454 extern const char kNotificationsVibrateEnabled[]; |
455 #endif | 455 #endif |
456 | 456 |
457 extern const char kPushMessagingAppIdentifierMap[]; | 457 extern const char kPushMessagingAppIdentifierMap[]; |
458 | 458 |
459 extern const char kGCMProductCategoryForSubtypes[]; | 459 extern const char kGCMProductCategoryForSubtypes[]; |
460 | 460 |
461 extern const char kEasyUnlockAllowed[]; | 461 extern const char kEasyUnlockAllowed[]; |
462 extern const char kEasyUnlockEnabled[]; | 462 extern const char kEasyUnlockEnabled[]; |
463 extern const char kEasyUnlockPairing[]; | 463 extern const char kEasyUnlockPairing[]; |
| 464 extern const char kEasyUnlockProximityThreshold[]; |
464 extern const char kEasyUnlockProximityRequired[]; | 465 extern const char kEasyUnlockProximityRequired[]; |
465 | 466 |
466 #if BUILDFLAG(ENABLE_EXTENSIONS) | 467 #if BUILDFLAG(ENABLE_EXTENSIONS) |
467 extern const char kToolbarIconSurfacingBubbleAcknowledged[]; | 468 extern const char kToolbarIconSurfacingBubbleAcknowledged[]; |
468 extern const char kToolbarIconSurfacingBubbleLastShowTime[]; | 469 extern const char kToolbarIconSurfacingBubbleLastShowTime[]; |
469 #endif | 470 #endif |
470 | 471 |
471 #if BUILDFLAG(ENABLE_WEBRTC) | 472 #if BUILDFLAG(ENABLE_WEBRTC) |
472 extern const char kWebRTCMultipleRoutesEnabled[]; | 473 extern const char kWebRTCMultipleRoutesEnabled[]; |
473 extern const char kWebRTCNonProxiedUdpEnabled[]; | 474 extern const char kWebRTCNonProxiedUdpEnabled[]; |
(...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
926 extern const char kClipboardLastModifiedTime[]; | 927 extern const char kClipboardLastModifiedTime[]; |
927 #endif | 928 #endif |
928 | 929 |
929 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) | 930 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) |
930 extern const char kOfflinePrefetchBackoff[]; | 931 extern const char kOfflinePrefetchBackoff[]; |
931 #endif | 932 #endif |
932 | 933 |
933 } // namespace prefs | 934 } // namespace prefs |
934 | 935 |
935 #endif // CHROME_COMMON_PREF_NAMES_H_ | 936 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |