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 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
625 | 625 |
626 #if defined(OS_CHROMEOS) | 626 #if defined(OS_CHROMEOS) |
627 extern const char kSignedSettingsCache[]; | 627 extern const char kSignedSettingsCache[]; |
628 extern const char kHardwareKeyboardLayout[]; | 628 extern const char kHardwareKeyboardLayout[]; |
629 extern const char kCarrierDealPromoShown[]; | 629 extern const char kCarrierDealPromoShown[]; |
630 extern const char kShouldAutoEnroll[]; | 630 extern const char kShouldAutoEnroll[]; |
631 extern const char kAutoEnrollmentPowerLimit[]; | 631 extern const char kAutoEnrollmentPowerLimit[]; |
632 extern const char kReportDeviceVersionInfo[]; | 632 extern const char kReportDeviceVersionInfo[]; |
633 extern const char kReportDeviceActivityTimes[]; | 633 extern const char kReportDeviceActivityTimes[]; |
634 extern const char kDeviceActivityTimes[]; | 634 extern const char kDeviceActivityTimes[]; |
| 635 extern const char kSyncSpareBootstrapToken[]; |
635 #endif | 636 #endif |
636 | 637 |
637 extern const char kClearPluginLSODataEnabled[]; | 638 extern const char kClearPluginLSODataEnabled[]; |
638 extern const char kDiskCacheDir[]; | 639 extern const char kDiskCacheDir[]; |
639 extern const char kDiskCacheSize[]; | 640 extern const char kDiskCacheSize[]; |
640 extern const char kMediaCacheSize[]; | 641 extern const char kMediaCacheSize[]; |
641 | 642 |
642 extern const char kChromeOsReleaseChannel[]; | 643 extern const char kChromeOsReleaseChannel[]; |
643 | 644 |
644 extern const char kRegisteredBackgroundContents[]; | 645 extern const char kRegisteredBackgroundContents[]; |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
682 | 683 |
683 extern const char kShelfAutoHideBehavior[]; | 684 extern const char kShelfAutoHideBehavior[]; |
684 | 685 |
685 #endif | 686 #endif |
686 | 687 |
687 extern const char kInManagedMode[]; | 688 extern const char kInManagedMode[]; |
688 | 689 |
689 } // namespace prefs | 690 } // namespace prefs |
690 | 691 |
691 #endif // CHROME_COMMON_PREF_NAMES_H_ | 692 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |