| 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 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 563 | 563 |
| 564 extern const char kDevToolsAdbKey[]; | 564 extern const char kDevToolsAdbKey[]; |
| 565 extern const char kDevToolsDisabled[]; | 565 extern const char kDevToolsDisabled[]; |
| 566 extern const char kDevToolsDiscoverUsbDevicesEnabled[]; | 566 extern const char kDevToolsDiscoverUsbDevicesEnabled[]; |
| 567 extern const char kDevToolsEditedFiles[]; | 567 extern const char kDevToolsEditedFiles[]; |
| 568 extern const char kDevToolsFileSystemPaths[]; | 568 extern const char kDevToolsFileSystemPaths[]; |
| 569 extern const char kDevToolsOpenDocked[]; | 569 extern const char kDevToolsOpenDocked[]; |
| 570 extern const char kDevToolsPortForwardingEnabled[]; | 570 extern const char kDevToolsPortForwardingEnabled[]; |
| 571 extern const char kDevToolsPortForwardingDefaultSet[]; | 571 extern const char kDevToolsPortForwardingDefaultSet[]; |
| 572 extern const char kDevToolsPortForwardingConfig[]; | 572 extern const char kDevToolsPortForwardingConfig[]; |
| 573 extern const char kDevToolsPreferences[]; |
| 573 #if defined(OS_ANDROID) | 574 #if defined(OS_ANDROID) |
| 574 extern const char kDevToolsRemoteEnabled[]; | 575 extern const char kDevToolsRemoteEnabled[]; |
| 575 #endif | 576 #endif |
| 576 | 577 |
| 577 extern const char kGoogleServicesPasswordHash[]; | 578 extern const char kGoogleServicesPasswordHash[]; |
| 578 | 579 |
| 579 extern const char kInvalidationServiceUseGCMChannel[]; | 580 extern const char kInvalidationServiceUseGCMChannel[]; |
| 580 | 581 |
| 581 #if !defined(OS_ANDROID) && !defined(OS_IOS) | 582 #if !defined(OS_ANDROID) && !defined(OS_IOS) |
| 582 extern const char kSignInPromoStartupCount[]; | 583 extern const char kSignInPromoStartupCount[]; |
| (...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 825 | 826 |
| 826 extern const char kRegisteredSupervisedUserWhitelists[]; | 827 extern const char kRegisteredSupervisedUserWhitelists[]; |
| 827 | 828 |
| 828 #if defined(ENABLE_EXTENSIONS) | 829 #if defined(ENABLE_EXTENSIONS) |
| 829 extern const char kAnimationPolicy[]; | 830 extern const char kAnimationPolicy[]; |
| 830 #endif | 831 #endif |
| 831 | 832 |
| 832 } // namespace prefs | 833 } // namespace prefs |
| 833 | 834 |
| 834 #endif // CHROME_COMMON_PREF_NAMES_H_ | 835 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |