| 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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 extern const char kEasyUnlockEnabled[]; | 407 extern const char kEasyUnlockEnabled[]; |
| 408 extern const char kEasyUnlockPairing[]; | 408 extern const char kEasyUnlockPairing[]; |
| 409 extern const char kEasyUnlockProximityRequired[]; | 409 extern const char kEasyUnlockProximityRequired[]; |
| 410 extern const char kEasyUnlockShowTutorial[]; | 410 extern const char kEasyUnlockShowTutorial[]; |
| 411 | 411 |
| 412 extern const char kZeroSuggestCachedResults[]; | 412 extern const char kZeroSuggestCachedResults[]; |
| 413 | 413 |
| 414 #if defined(ENABLE_EXTENSIONS) && !defined(OS_ANDROID) && !defined(OS_IOS) | 414 #if defined(ENABLE_EXTENSIONS) && !defined(OS_ANDROID) && !defined(OS_IOS) |
| 415 extern const char kCopresenceAuthenticatedDeviceId[]; | 415 extern const char kCopresenceAuthenticatedDeviceId[]; |
| 416 extern const char kCopresenceAnonymousDeviceId[]; | 416 extern const char kCopresenceAnonymousDeviceId[]; |
| 417 extern const char kToolbarIconSurfacingBubbleAcknowledged[]; |
| 418 extern const char kToolbarIconSurfacingBubbleLastShowTime[]; |
| 417 #endif | 419 #endif |
| 418 | 420 |
| 419 #if defined(ENABLE_WEBRTC) | 421 #if defined(ENABLE_WEBRTC) |
| 420 extern const char kWebRTCMultipleRoutesEnabled[]; | 422 extern const char kWebRTCMultipleRoutesEnabled[]; |
| 421 #endif | 423 #endif |
| 422 | 424 |
| 423 // Local state prefs. Please add Profile prefs above instead. | 425 // Local state prefs. Please add Profile prefs above instead. |
| 424 extern const char kCertRevocationCheckingEnabled[]; | 426 extern const char kCertRevocationCheckingEnabled[]; |
| 425 extern const char kCertRevocationCheckingRequiredLocalAnchors[]; | 427 extern const char kCertRevocationCheckingRequiredLocalAnchors[]; |
| 426 extern const char kSSLVersionMin[]; | 428 extern const char kSSLVersionMin[]; |
| (...skipping 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 822 | 824 |
| 823 extern const char kRegisteredSupervisedUserWhitelists[]; | 825 extern const char kRegisteredSupervisedUserWhitelists[]; |
| 824 | 826 |
| 825 #if defined(ENABLE_EXTENSIONS) | 827 #if defined(ENABLE_EXTENSIONS) |
| 826 extern const char kAnimationPolicy[]; | 828 extern const char kAnimationPolicy[]; |
| 827 #endif | 829 #endif |
| 828 | 830 |
| 829 } // namespace prefs | 831 } // namespace prefs |
| 830 | 832 |
| 831 #endif // CHROME_COMMON_PREF_NAMES_H_ | 833 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |