| 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 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 | 420 |
| 421 extern const char kPushMessagingAppIdentifierMap[]; | 421 extern const char kPushMessagingAppIdentifierMap[]; |
| 422 extern const char kBackgroundBudgetMap[]; | 422 extern const char kBackgroundBudgetMap[]; |
| 423 | 423 |
| 424 extern const char kEasyUnlockAllowed[]; | 424 extern const char kEasyUnlockAllowed[]; |
| 425 extern const char kEasyUnlockEnabled[]; | 425 extern const char kEasyUnlockEnabled[]; |
| 426 extern const char kEasyUnlockPairing[]; | 426 extern const char kEasyUnlockPairing[]; |
| 427 extern const char kEasyUnlockProximityRequired[]; | 427 extern const char kEasyUnlockProximityRequired[]; |
| 428 | 428 |
| 429 #if defined(ENABLE_EXTENSIONS) | 429 #if defined(ENABLE_EXTENSIONS) |
| 430 extern const char kCopresenceAuthenticatedDeviceId[]; | |
| 431 extern const char kCopresenceAnonymousDeviceId[]; | |
| 432 extern const char kToolbarIconSurfacingBubbleAcknowledged[]; | 430 extern const char kToolbarIconSurfacingBubbleAcknowledged[]; |
| 433 extern const char kToolbarIconSurfacingBubbleLastShowTime[]; | 431 extern const char kToolbarIconSurfacingBubbleLastShowTime[]; |
| 434 extern const char kToolbarMigratedComponentActionStatus[]; | 432 extern const char kToolbarMigratedComponentActionStatus[]; |
| 435 #endif | 433 #endif |
| 436 | 434 |
| 437 #if defined(ENABLE_WEBRTC) | 435 #if defined(ENABLE_WEBRTC) |
| 438 extern const char kWebRTCMultipleRoutesEnabled[]; | 436 extern const char kWebRTCMultipleRoutesEnabled[]; |
| 439 extern const char kWebRTCNonProxiedUdpEnabled[]; | 437 extern const char kWebRTCNonProxiedUdpEnabled[]; |
| 440 extern const char kWebRTCIPHandlingPolicy[]; | 438 extern const char kWebRTCIPHandlingPolicy[]; |
| 441 #endif | 439 #endif |
| (...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 819 #endif // defined(GOOGLE_CHROME_BUILD) | 817 #endif // defined(GOOGLE_CHROME_BUILD) |
| 820 extern const char kMediaRouterFirstRunFlowAcknowledged[]; | 818 extern const char kMediaRouterFirstRunFlowAcknowledged[]; |
| 821 #endif | 819 #endif |
| 822 | 820 |
| 823 extern const char kOriginTrialPublicKey[]; | 821 extern const char kOriginTrialPublicKey[]; |
| 824 extern const char kOriginTrialDisabledFeatures[]; | 822 extern const char kOriginTrialDisabledFeatures[]; |
| 825 | 823 |
| 826 } // namespace prefs | 824 } // namespace prefs |
| 827 | 825 |
| 828 #endif // CHROME_COMMON_PREF_NAMES_H_ | 826 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |