| 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 | 407 |
| 408 extern const char kLocalDiscoveryNotificationsEnabled[]; | 408 extern const char kLocalDiscoveryNotificationsEnabled[]; |
| 409 | 409 |
| 410 #if defined(OS_ANDROID) | 410 #if defined(OS_ANDROID) |
| 411 extern const char kNotificationsVibrateEnabled[]; | 411 extern const char kNotificationsVibrateEnabled[]; |
| 412 #endif | 412 #endif |
| 413 | 413 |
| 414 extern const char kPushMessagingAppIdentifierMap[]; | 414 extern const char kPushMessagingAppIdentifierMap[]; |
| 415 extern const char kBackgroundBudgetMap[]; | 415 extern const char kBackgroundBudgetMap[]; |
| 416 | 416 |
| 417 extern const char kGCMCategoryForSubtypes[]; |
| 418 |
| 417 extern const char kEasyUnlockAllowed[]; | 419 extern const char kEasyUnlockAllowed[]; |
| 418 extern const char kEasyUnlockEnabled[]; | 420 extern const char kEasyUnlockEnabled[]; |
| 419 extern const char kEasyUnlockPairing[]; | 421 extern const char kEasyUnlockPairing[]; |
| 420 extern const char kEasyUnlockProximityRequired[]; | 422 extern const char kEasyUnlockProximityRequired[]; |
| 421 | 423 |
| 422 #if defined(ENABLE_EXTENSIONS) | 424 #if defined(ENABLE_EXTENSIONS) |
| 423 extern const char kToolbarIconSurfacingBubbleAcknowledged[]; | 425 extern const char kToolbarIconSurfacingBubbleAcknowledged[]; |
| 424 extern const char kToolbarIconSurfacingBubbleLastShowTime[]; | 426 extern const char kToolbarIconSurfacingBubbleLastShowTime[]; |
| 425 extern const char kToolbarMigratedComponentActionStatus[]; | 427 extern const char kToolbarMigratedComponentActionStatus[]; |
| 426 #endif | 428 #endif |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 #endif // defined(GOOGLE_CHROME_BUILD) | 812 #endif // defined(GOOGLE_CHROME_BUILD) |
| 811 extern const char kMediaRouterFirstRunFlowAcknowledged[]; | 813 extern const char kMediaRouterFirstRunFlowAcknowledged[]; |
| 812 #endif | 814 #endif |
| 813 | 815 |
| 814 extern const char kOriginTrialPublicKey[]; | 816 extern const char kOriginTrialPublicKey[]; |
| 815 extern const char kOriginTrialDisabledFeatures[]; | 817 extern const char kOriginTrialDisabledFeatures[]; |
| 816 | 818 |
| 817 } // namespace prefs | 819 } // namespace prefs |
| 818 | 820 |
| 819 #endif // CHROME_COMMON_PREF_NAMES_H_ | 821 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |