| 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 523 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 extern const char kNtpShownPage[]; | 534 extern const char kNtpShownPage[]; |
| 535 extern const char kNtpCustomLogoStart[]; | 535 extern const char kNtpCustomLogoStart[]; |
| 536 extern const char kNtpCustomLogoEnd[]; | 536 extern const char kNtpCustomLogoEnd[]; |
| 537 extern const char kNtpPromoVersion[]; | 537 extern const char kNtpPromoVersion[]; |
| 538 extern const char kNtpPromoLocale[]; | 538 extern const char kNtpPromoLocale[]; |
| 539 extern const char kNtpPromoDesktopSessionFound[]; | 539 extern const char kNtpPromoDesktopSessionFound[]; |
| 540 extern const char kNtpWebStoreEnabled[]; | 540 extern const char kNtpWebStoreEnabled[]; |
| 541 extern const char kNtpAppPageNames[]; | 541 extern const char kNtpAppPageNames[]; |
| 542 | 542 |
| 543 extern const char kDevToolsDisabled[]; | 543 extern const char kDevToolsDisabled[]; |
| 544 extern const char kDevToolsDockSide[]; |
| 545 extern const char kDevToolsEditedFiles[]; |
| 546 extern const char kDevToolsHSplitLocation[]; |
| 544 extern const char kDevToolsOpenDocked[]; | 547 extern const char kDevToolsOpenDocked[]; |
| 545 extern const char kDevToolsDockSide[]; | 548 #if defined(OS_ANDROID) |
| 546 extern const char kDevToolsHSplitLocation[]; | 549 extern const char kDevToolsRemoteEnabled[]; |
| 550 #endif |
| 547 extern const char kDevToolsVSplitLocation[]; | 551 extern const char kDevToolsVSplitLocation[]; |
| 548 extern const char kDevToolsEditedFiles[]; | |
| 549 | 552 |
| 550 extern const char kSyncLastSyncedTime[]; | 553 extern const char kSyncLastSyncedTime[]; |
| 551 extern const char kSyncHasSetupCompleted[]; | 554 extern const char kSyncHasSetupCompleted[]; |
| 552 extern const char kSyncKeepEverythingSynced[]; | 555 extern const char kSyncKeepEverythingSynced[]; |
| 553 extern const char kSyncBookmarks[]; | 556 extern const char kSyncBookmarks[]; |
| 554 extern const char kSyncPasswords[]; | 557 extern const char kSyncPasswords[]; |
| 555 extern const char kSyncPreferences[]; | 558 extern const char kSyncPreferences[]; |
| 556 extern const char kSyncAppNotifications[]; | 559 extern const char kSyncAppNotifications[]; |
| 557 extern const char kSyncAppSettings[]; | 560 extern const char kSyncAppSettings[]; |
| 558 extern const char kSyncApps[]; | 561 extern const char kSyncApps[]; |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 749 extern const char kInManagedMode[]; | 752 extern const char kInManagedMode[]; |
| 750 | 753 |
| 751 extern const char kNetworkProfileWarningsLeft[]; | 754 extern const char kNetworkProfileWarningsLeft[]; |
| 752 extern const char kNetworkProfileLastWarningTime[]; | 755 extern const char kNetworkProfileLastWarningTime[]; |
| 753 | 756 |
| 754 extern const char kLastPolicyStatisticsUpdate[]; | 757 extern const char kLastPolicyStatisticsUpdate[]; |
| 755 | 758 |
| 756 } // namespace prefs | 759 } // namespace prefs |
| 757 | 760 |
| 758 #endif // CHROME_COMMON_PREF_NAMES_H_ | 761 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |