| 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 728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 739 extern const char kAppListLaunchCount[]; | 739 extern const char kAppListLaunchCount[]; |
| 740 extern const char kLastAppListAppLaunchPing[]; | 740 extern const char kLastAppListAppLaunchPing[]; |
| 741 extern const char kAppListAppLaunchCount[]; | 741 extern const char kAppListAppLaunchCount[]; |
| 742 extern const char kAppLauncherHasBeenEnabled[]; | 742 extern const char kAppLauncherHasBeenEnabled[]; |
| 743 extern const char kAppListEnableMethod[]; | 743 extern const char kAppListEnableMethod[]; |
| 744 extern const char kAppListEnableTime[]; | 744 extern const char kAppListEnableTime[]; |
| 745 extern const char kAppListLastLaunchTime[]; | 745 extern const char kAppListLastLaunchTime[]; |
| 746 #if defined(OS_MACOSX) | 746 #if defined(OS_MACOSX) |
| 747 extern const char kAppLauncherShortcutVersion[]; | 747 extern const char kAppLauncherShortcutVersion[]; |
| 748 #endif | 748 #endif |
| 749 extern const char kShowAppLauncherPromo[]; | |
| 750 extern const char kAppLauncherDriveAppMapping[]; | 749 extern const char kAppLauncherDriveAppMapping[]; |
| 751 extern const char kAppLauncherUninstalledDriveApps[]; | 750 extern const char kAppLauncherUninstalledDriveApps[]; |
| 752 #endif // defined(ENABLE_APP_LIST) | 751 #endif // defined(ENABLE_APP_LIST) |
| 753 | 752 |
| 754 #if defined(OS_WIN) | 753 #if defined(OS_WIN) |
| 755 extern const char kAppLaunchForMetroRestart[]; | 754 extern const char kAppLaunchForMetroRestart[]; |
| 756 extern const char kAppLaunchForMetroRestartProfile[]; | 755 extern const char kAppLaunchForMetroRestartProfile[]; |
| 757 #endif | 756 #endif |
| 758 extern const char kAppShortcutsVersion[]; | 757 extern const char kAppShortcutsVersion[]; |
| 759 | 758 |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 798 #if defined(GOOGLE_CHROME_BUILD) | 797 #if defined(GOOGLE_CHROME_BUILD) |
| 799 extern const char kMediaRouterCloudServicesPrefSet[]; | 798 extern const char kMediaRouterCloudServicesPrefSet[]; |
| 800 extern const char kMediaRouterEnableCloudServices[]; | 799 extern const char kMediaRouterEnableCloudServices[]; |
| 801 #endif // defined(GOOGLE_CHROME_BUILD) | 800 #endif // defined(GOOGLE_CHROME_BUILD) |
| 802 extern const char kMediaRouterFirstRunFlowAcknowledged[]; | 801 extern const char kMediaRouterFirstRunFlowAcknowledged[]; |
| 803 #endif | 802 #endif |
| 804 | 803 |
| 805 } // namespace prefs | 804 } // namespace prefs |
| 806 | 805 |
| 807 #endif // CHROME_COMMON_PREF_NAMES_H_ | 806 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |