| 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 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 646 extern const char kChromeOsReleaseChannel[]; | 646 extern const char kChromeOsReleaseChannel[]; |
| 647 | 647 |
| 648 extern const char kPerformanceTracingEnabled[]; | 648 extern const char kPerformanceTracingEnabled[]; |
| 649 | 649 |
| 650 extern const char kTabStripStackedLayout[]; | 650 extern const char kTabStripStackedLayout[]; |
| 651 | 651 |
| 652 extern const char kRegisteredBackgroundContents[]; | 652 extern const char kRegisteredBackgroundContents[]; |
| 653 | 653 |
| 654 #if defined(OS_WIN) | 654 #if defined(OS_WIN) |
| 655 extern const char kLastWelcomedOSVersion[]; | 655 extern const char kLastWelcomedOSVersion[]; |
| 656 extern const char kShownAutoLaunchInfobar[]; | |
| 657 extern const char kWelcomePageOnOSUpgradeEnabled[]; | 656 extern const char kWelcomePageOnOSUpgradeEnabled[]; |
| 658 #endif | 657 #endif |
| 659 | 658 |
| 660 extern const char kAuthSchemes[]; | 659 extern const char kAuthSchemes[]; |
| 661 extern const char kDisableAuthNegotiateCnameLookup[]; | 660 extern const char kDisableAuthNegotiateCnameLookup[]; |
| 662 extern const char kEnableAuthNegotiatePort[]; | 661 extern const char kEnableAuthNegotiatePort[]; |
| 663 extern const char kAuthServerWhitelist[]; | 662 extern const char kAuthServerWhitelist[]; |
| 664 extern const char kAuthNegotiateDelegateWhitelist[]; | 663 extern const char kAuthNegotiateDelegateWhitelist[]; |
| 665 extern const char kGSSAPILibraryName[]; | 664 extern const char kGSSAPILibraryName[]; |
| 666 extern const char kAuthAndroidNegotiateAccountType[]; | 665 extern const char kAuthAndroidNegotiateAccountType[]; |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 792 extern const char kAnimationPolicy[]; | 791 extern const char kAnimationPolicy[]; |
| 793 #endif | 792 #endif |
| 794 | 793 |
| 795 extern const char kBackgroundTracingLastUpload[]; | 794 extern const char kBackgroundTracingLastUpload[]; |
| 796 | 795 |
| 797 extern const char kAllowDinosaurEasterEgg[]; | 796 extern const char kAllowDinosaurEasterEgg[]; |
| 798 | 797 |
| 799 } // namespace prefs | 798 } // namespace prefs |
| 800 | 799 |
| 801 #endif // CHROME_COMMON_PREF_NAMES_H_ | 800 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |