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 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
584 extern const char kNtpPromoDesktopSessionFound[]; | 584 extern const char kNtpPromoDesktopSessionFound[]; |
585 extern const char kNtpPromoResourceCacheUpdate[]; | 585 extern const char kNtpPromoResourceCacheUpdate[]; |
586 extern const char kNtpShownBookmarksFolder[]; | 586 extern const char kNtpShownBookmarksFolder[]; |
587 extern const char kNtpShownPage[]; | 587 extern const char kNtpShownPage[]; |
588 extern const char kNtpTipsResourceServer[]; | 588 extern const char kNtpTipsResourceServer[]; |
589 extern const char kNtpWebStoreEnabled[]; | 589 extern const char kNtpWebStoreEnabled[]; |
590 | 590 |
591 extern const char kDevToolsAdbKey[]; | 591 extern const char kDevToolsAdbKey[]; |
592 extern const char kDevToolsDisabled[]; | 592 extern const char kDevToolsDisabled[]; |
593 extern const char kDevToolsDiscoverUsbDevicesEnabled[]; | 593 extern const char kDevToolsDiscoverUsbDevicesEnabled[]; |
594 extern const char kDevToolsDockSide[]; | |
595 extern const char kDevToolsEditedFiles[]; | 594 extern const char kDevToolsEditedFiles[]; |
596 extern const char kDevToolsFileSystemPaths[]; | 595 extern const char kDevToolsFileSystemPaths[]; |
597 extern const char kDevToolsOpenDocked[]; | 596 extern const char kDevToolsOpenDocked[]; |
598 extern const char kDevToolsPortForwardingEnabled[]; | 597 extern const char kDevToolsPortForwardingEnabled[]; |
599 extern const char kDevToolsPortForwardingDefaultSet[]; | 598 extern const char kDevToolsPortForwardingDefaultSet[]; |
600 extern const char kDevToolsPortForwardingConfig[]; | 599 extern const char kDevToolsPortForwardingConfig[]; |
601 #if defined(OS_ANDROID) | 600 #if defined(OS_ANDROID) |
602 extern const char kDevToolsRemoteEnabled[]; | 601 extern const char kDevToolsRemoteEnabled[]; |
603 #endif | 602 #endif |
604 #if defined(OS_ANDROID) || defined(OS_IOS) | 603 #if defined(OS_ANDROID) || defined(OS_IOS) |
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
955 #if defined(OS_WIN) | 954 #if defined(OS_WIN) |
956 extern const char kOsPasswordBlank[]; | 955 extern const char kOsPasswordBlank[]; |
957 extern const char kOsPasswordLastChanged[]; | 956 extern const char kOsPasswordLastChanged[]; |
958 #endif | 957 #endif |
959 | 958 |
960 extern const char kQuickCheckEnabled[]; | 959 extern const char kQuickCheckEnabled[]; |
961 | 960 |
962 } // namespace prefs | 961 } // namespace prefs |
963 | 962 |
964 #endif // CHROME_COMMON_PREF_NAMES_H_ | 963 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |