| 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 900 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 911 extern const char kBookmarksFootNoteIOSPromoDismissed[]; | 911 extern const char kBookmarksFootNoteIOSPromoDismissed[]; |
| 912 extern const char kNumberHistoryPageIOSPromoShown[]; | 912 extern const char kNumberHistoryPageIOSPromoShown[]; |
| 913 extern const char kHistoryPageIOSPromoDismissed[]; | 913 extern const char kHistoryPageIOSPromoDismissed[]; |
| 914 #endif | 914 #endif |
| 915 | 915 |
| 916 extern const char kSettingsResetPromptPromptWave[]; | 916 extern const char kSettingsResetPromptPromptWave[]; |
| 917 extern const char kSettingsResetPromptLastTriggeredForDefaultSearch[]; | 917 extern const char kSettingsResetPromptLastTriggeredForDefaultSearch[]; |
| 918 extern const char kSettingsResetPromptLastTriggeredForStartupUrls[]; | 918 extern const char kSettingsResetPromptLastTriggeredForStartupUrls[]; |
| 919 extern const char kSettingsResetPromptLastTriggeredForHomepage[]; | 919 extern const char kSettingsResetPromptLastTriggeredForHomepage[]; |
| 920 | 920 |
| 921 #if defined(OS_WIN) |
| 922 extern const char kChromeCleanerResetPending[]; |
| 923 #endif |
| 924 |
| 921 #if defined(OS_ANDROID) | 925 #if defined(OS_ANDROID) |
| 922 extern const char kClipboardLastModifiedTime[]; | 926 extern const char kClipboardLastModifiedTime[]; |
| 923 #endif | 927 #endif |
| 924 | 928 |
| 925 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) | 929 #if BUILDFLAG(ENABLE_OFFLINE_PAGES) |
| 926 extern const char kOfflinePrefetchBackoff[]; | 930 extern const char kOfflinePrefetchBackoff[]; |
| 927 #endif | 931 #endif |
| 928 | 932 |
| 929 } // namespace prefs | 933 } // namespace prefs |
| 930 | 934 |
| 931 #endif // CHROME_COMMON_PREF_NAMES_H_ | 935 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |