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 889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
900 | 900 |
901 #if defined(ENABLE_APP_LIST) | 901 #if defined(ENABLE_APP_LIST) |
902 extern const char kAppListProfile[]; | 902 extern const char kAppListProfile[]; |
903 extern const char kRestartWithAppList[]; | 903 extern const char kRestartWithAppList[]; |
904 | 904 |
905 extern const char kLastAppListLaunchPing[]; | 905 extern const char kLastAppListLaunchPing[]; |
906 extern const char kAppListLaunchCount[]; | 906 extern const char kAppListLaunchCount[]; |
907 extern const char kLastAppListAppLaunchPing[]; | 907 extern const char kLastAppListAppLaunchPing[]; |
908 extern const char kAppListAppLaunchCount[]; | 908 extern const char kAppListAppLaunchCount[]; |
909 extern const char kAppLauncherHasBeenEnabled[]; | 909 extern const char kAppLauncherHasBeenEnabled[]; |
| 910 extern const char kAppListEnableMethod[]; |
| 911 extern const char kAppListEnableTime[]; |
910 extern const char kAppLauncherIsEnabled[]; | 912 extern const char kAppLauncherIsEnabled[]; |
911 extern const char kAppLauncherShortcutVersion[]; | 913 extern const char kAppLauncherShortcutVersion[]; |
912 extern const char kShowAppLauncherPromo[]; | 914 extern const char kShowAppLauncherPromo[]; |
913 #endif | 915 #endif |
914 | 916 |
915 extern const char kAppLaunchForMetroRestart[]; | 917 extern const char kAppLaunchForMetroRestart[]; |
916 extern const char kAppLaunchForMetroRestartProfile[]; | 918 extern const char kAppLaunchForMetroRestartProfile[]; |
917 extern const char kAppShortcutsHaveBeenCreated[]; | 919 extern const char kAppShortcutsHaveBeenCreated[]; |
918 | 920 |
919 extern const char kModuleConflictBubbleShown[]; | 921 extern const char kModuleConflictBubbleShown[]; |
(...skipping 16 matching lines...) Expand all Loading... |
936 #if defined(OS_WIN) | 938 #if defined(OS_WIN) |
937 extern const char kOsPasswordBlank[]; | 939 extern const char kOsPasswordBlank[]; |
938 extern const char kOsPasswordLastChanged[]; | 940 extern const char kOsPasswordLastChanged[]; |
939 #endif | 941 #endif |
940 | 942 |
941 extern const char kQuickCheckEnabled[]; | 943 extern const char kQuickCheckEnabled[]; |
942 | 944 |
943 } // namespace prefs | 945 } // namespace prefs |
944 | 946 |
945 #endif // CHROME_COMMON_PREF_NAMES_H_ | 947 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |