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 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
391 extern const char kMessageCenterDisabledSystemComponentIds[]; | 391 extern const char kMessageCenterDisabledSystemComponentIds[]; |
392 extern const char kWelcomeNotificationDismissed[]; | 392 extern const char kWelcomeNotificationDismissed[]; |
393 extern const char kWelcomeNotificationDismissedLocal[]; | 393 extern const char kWelcomeNotificationDismissedLocal[]; |
394 extern const char kWelcomeNotificationPreviouslyPoppedUp[]; | 394 extern const char kWelcomeNotificationPreviouslyPoppedUp[]; |
395 extern const char kWelcomeNotificationExpirationTimestamp[]; | 395 extern const char kWelcomeNotificationExpirationTimestamp[]; |
396 | 396 |
397 extern const char kFullscreenAllowed[]; | 397 extern const char kFullscreenAllowed[]; |
398 | 398 |
399 extern const char kLocalDiscoveryNotificationsEnabled[]; | 399 extern const char kLocalDiscoveryNotificationsEnabled[]; |
400 | 400 |
401 extern const char kPreferenceResetTime[]; | |
402 | |
403 extern const char kPushMessagingRegistrationCount[]; | 401 extern const char kPushMessagingRegistrationCount[]; |
404 extern const char kPushMessagingAppIdentifierMap[]; | 402 extern const char kPushMessagingAppIdentifierMap[]; |
405 | 403 |
406 extern const char kEasyUnlockAllowed[]; | 404 extern const char kEasyUnlockAllowed[]; |
407 extern const char kEasyUnlockEnabled[]; | 405 extern const char kEasyUnlockEnabled[]; |
408 extern const char kEasyUnlockPairing[]; | 406 extern const char kEasyUnlockPairing[]; |
409 extern const char kEasyUnlockProximityRequired[]; | 407 extern const char kEasyUnlockProximityRequired[]; |
410 | 408 |
411 #if defined(ENABLE_EXTENSIONS) && !defined(OS_ANDROID) && !defined(OS_IOS) | 409 #if defined(ENABLE_EXTENSIONS) && !defined(OS_ANDROID) && !defined(OS_IOS) |
412 extern const char kCopresenceAuthenticatedDeviceId[]; | 410 extern const char kCopresenceAuthenticatedDeviceId[]; |
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
821 | 819 |
822 #if defined(ENABLE_EXTENSIONS) | 820 #if defined(ENABLE_EXTENSIONS) |
823 extern const char kAnimationPolicy[]; | 821 extern const char kAnimationPolicy[]; |
824 #endif | 822 #endif |
825 | 823 |
826 extern const char kBackgroundTracingLastUpload[]; | 824 extern const char kBackgroundTracingLastUpload[]; |
827 | 825 |
828 } // namespace prefs | 826 } // namespace prefs |
829 | 827 |
830 #endif // CHROME_COMMON_PREF_NAMES_H_ | 828 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |