| 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 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 564 extern const char kNtpDateResourceServer[]; | 564 extern const char kNtpDateResourceServer[]; |
| 565 extern const char kNtpShownBookmarksFolder[]; | 565 extern const char kNtpShownBookmarksFolder[]; |
| 566 extern const char kNtpShownPage[]; | 566 extern const char kNtpShownPage[]; |
| 567 extern const char kNtpPromoDesktopSessionFound[]; | 567 extern const char kNtpPromoDesktopSessionFound[]; |
| 568 extern const char kNtpWebStoreEnabled[]; | 568 extern const char kNtpWebStoreEnabled[]; |
| 569 extern const char kNtpAppPageNames[]; | 569 extern const char kNtpAppPageNames[]; |
| 570 | 570 |
| 571 extern const char kDevToolsDisabled[]; | 571 extern const char kDevToolsDisabled[]; |
| 572 extern const char kDevToolsDockSide[]; | 572 extern const char kDevToolsDockSide[]; |
| 573 extern const char kDevToolsEditedFiles[]; | 573 extern const char kDevToolsEditedFiles[]; |
| 574 extern const char kDevToolsFileSystemPaths[]; |
| 574 extern const char kDevToolsHSplitLocation[]; | 575 extern const char kDevToolsHSplitLocation[]; |
| 575 extern const char kDevToolsOpenDocked[]; | 576 extern const char kDevToolsOpenDocked[]; |
| 576 #if defined(OS_ANDROID) | 577 #if defined(OS_ANDROID) |
| 577 extern const char kDevToolsRemoteEnabled[]; | 578 extern const char kDevToolsRemoteEnabled[]; |
| 578 #endif | 579 #endif |
| 579 extern const char kDevToolsVSplitLocation[]; | 580 extern const char kDevToolsVSplitLocation[]; |
| 580 #if defined(OS_ANDROID) | 581 #if defined(OS_ANDROID) |
| 581 // Used by Chrome Mobile. | 582 // Used by Chrome Mobile. |
| 582 extern const char kSpdyProxyEnabled[]; | 583 extern const char kSpdyProxyEnabled[]; |
| 583 #endif | 584 #endif |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 819 extern const char kLastPolicyStatisticsUpdate[]; | 820 extern const char kLastPolicyStatisticsUpdate[]; |
| 820 | 821 |
| 821 #if defined(OS_CHROMEOS) | 822 #if defined(OS_CHROMEOS) |
| 822 extern const char kRLZBrand[]; | 823 extern const char kRLZBrand[]; |
| 823 extern const char kRLZDisabled[]; | 824 extern const char kRLZDisabled[]; |
| 824 #endif | 825 #endif |
| 825 | 826 |
| 826 } // namespace prefs | 827 } // namespace prefs |
| 827 | 828 |
| 828 #endif // CHROME_COMMON_PREF_NAMES_H_ | 829 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |