| 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 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 535 extern const char kNtpPromoLocale[]; | 535 extern const char kNtpPromoLocale[]; |
| 536 extern const char kNtpPromoDesktopSessionFound[]; | 536 extern const char kNtpPromoDesktopSessionFound[]; |
| 537 extern const char kNtpWebStoreEnabled[]; | 537 extern const char kNtpWebStoreEnabled[]; |
| 538 extern const char kNtpAppPageNames[]; | 538 extern const char kNtpAppPageNames[]; |
| 539 | 539 |
| 540 extern const char kDevToolsDisabled[]; | 540 extern const char kDevToolsDisabled[]; |
| 541 extern const char kDevToolsOpenDocked[]; | 541 extern const char kDevToolsOpenDocked[]; |
| 542 extern const char kDevToolsDockSide[]; | 542 extern const char kDevToolsDockSide[]; |
| 543 extern const char kDevToolsHSplitLocation[]; | 543 extern const char kDevToolsHSplitLocation[]; |
| 544 extern const char kDevToolsVSplitLocation[]; | 544 extern const char kDevToolsVSplitLocation[]; |
| 545 #if defined(OS_ANDROID) |
| 546 extern const char kSpdyProxyEnabled[]; |
| 547 #endif |
| 545 extern const char kDevToolsEditedFiles[]; | 548 extern const char kDevToolsEditedFiles[]; |
| 546 | 549 |
| 547 extern const char kSyncLastSyncedTime[]; | 550 extern const char kSyncLastSyncedTime[]; |
| 548 extern const char kSyncHasSetupCompleted[]; | 551 extern const char kSyncHasSetupCompleted[]; |
| 549 extern const char kSyncKeepEverythingSynced[]; | 552 extern const char kSyncKeepEverythingSynced[]; |
| 550 extern const char kSyncBookmarks[]; | 553 extern const char kSyncBookmarks[]; |
| 551 extern const char kSyncPasswords[]; | 554 extern const char kSyncPasswords[]; |
| 552 extern const char kSyncPreferences[]; | 555 extern const char kSyncPreferences[]; |
| 553 extern const char kSyncAppNotifications[]; | 556 extern const char kSyncAppNotifications[]; |
| 554 extern const char kSyncAppSettings[]; | 557 extern const char kSyncAppSettings[]; |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 682 extern const char kRegisteredBackgroundContents[]; | 685 extern const char kRegisteredBackgroundContents[]; |
| 683 | 686 |
| 684 extern const char kShownAutoLaunchInfobar[]; | 687 extern const char kShownAutoLaunchInfobar[]; |
| 685 | 688 |
| 686 extern const char kAuthSchemes[]; | 689 extern const char kAuthSchemes[]; |
| 687 extern const char kDisableAuthNegotiateCnameLookup[]; | 690 extern const char kDisableAuthNegotiateCnameLookup[]; |
| 688 extern const char kEnableAuthNegotiatePort[]; | 691 extern const char kEnableAuthNegotiatePort[]; |
| 689 extern const char kAuthServerWhitelist[]; | 692 extern const char kAuthServerWhitelist[]; |
| 690 extern const char kAuthNegotiateDelegateWhitelist[]; | 693 extern const char kAuthNegotiateDelegateWhitelist[]; |
| 691 extern const char kGSSAPILibraryName[]; | 694 extern const char kGSSAPILibraryName[]; |
| 695 extern const char kSpdyProxyOrigin[]; |
| 696 |
| 692 extern const char kAllowCrossOriginAuthPrompt[]; | 697 extern const char kAllowCrossOriginAuthPrompt[]; |
| 693 | 698 |
| 694 extern const char kRegisteredProtocolHandlers[]; | 699 extern const char kRegisteredProtocolHandlers[]; |
| 695 extern const char kIgnoredProtocolHandlers[]; | 700 extern const char kIgnoredProtocolHandlers[]; |
| 696 extern const char kCustomHandlersEnabled[]; | 701 extern const char kCustomHandlersEnabled[]; |
| 697 | 702 |
| 698 extern const char kUserCreatedLoginItem[]; | 703 extern const char kUserCreatedLoginItem[]; |
| 699 extern const char kUserRemovedLoginItem[]; | 704 extern const char kUserRemovedLoginItem[]; |
| 700 extern const char kBackgroundModeEnabled[]; | 705 extern const char kBackgroundModeEnabled[]; |
| 701 | 706 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 740 #endif | 745 #endif |
| 741 | 746 |
| 742 extern const char kInManagedMode[]; | 747 extern const char kInManagedMode[]; |
| 743 | 748 |
| 744 extern const char kNetworkProfileWarningsLeft[]; | 749 extern const char kNetworkProfileWarningsLeft[]; |
| 745 extern const char kNetworkProfileLastWarningTime[]; | 750 extern const char kNetworkProfileLastWarningTime[]; |
| 746 | 751 |
| 747 } // namespace prefs | 752 } // namespace prefs |
| 748 | 753 |
| 749 #endif // CHROME_COMMON_PREF_NAMES_H_ | 754 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |