| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 #endif | 168 #endif |
| 169 #if defined(OS_MACOSX) | 169 #if defined(OS_MACOSX) |
| 170 extern const char kConfirmToQuitEnabled[]; | 170 extern const char kConfirmToQuitEnabled[]; |
| 171 extern const char kHideFullscreenToolbar[]; | 171 extern const char kHideFullscreenToolbar[]; |
| 172 extern const char kShowFullscreenToolbar[]; | 172 extern const char kShowFullscreenToolbar[]; |
| 173 #endif | 173 #endif |
| 174 extern const char kPromptForDownload[]; | 174 extern const char kPromptForDownload[]; |
| 175 extern const char kAlternateErrorPagesEnabled[]; | 175 extern const char kAlternateErrorPagesEnabled[]; |
| 176 extern const char kDnsPrefetchingStartupList[]; | 176 extern const char kDnsPrefetchingStartupList[]; |
| 177 extern const char kDnsPrefetchingHostReferralList[]; | 177 extern const char kDnsPrefetchingHostReferralList[]; |
| 178 extern const char kQuicAllowed[]; |
| 178 extern const char kHttpServerProperties[]; | 179 extern const char kHttpServerProperties[]; |
| 179 extern const char kNetworkQualities[]; | 180 extern const char kNetworkQualities[]; |
| 180 #if defined(OS_ANDROID) | 181 #if defined(OS_ANDROID) |
| 181 extern const char kLastPolicyCheckTime[]; | 182 extern const char kLastPolicyCheckTime[]; |
| 182 #endif | 183 #endif |
| 183 extern const char kInstantUIZeroSuggestUrlPrefix[]; | 184 extern const char kInstantUIZeroSuggestUrlPrefix[]; |
| 184 extern const char kNetworkPredictionOptions[]; | 185 extern const char kNetworkPredictionOptions[]; |
| 185 extern const char kDefaultAppsInstallState[]; | 186 extern const char kDefaultAppsInstallState[]; |
| 186 extern const char kHideWebStoreIcon[]; | 187 extern const char kHideWebStoreIcon[]; |
| 187 #if defined(OS_CHROMEOS) | 188 #if defined(OS_CHROMEOS) |
| (...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 851 | 852 |
| 852 #if defined(OS_ANDROID) | 853 #if defined(OS_ANDROID) |
| 853 extern const char kSearchGeolocationDisclosureDismissed[]; | 854 extern const char kSearchGeolocationDisclosureDismissed[]; |
| 854 extern const char kSearchGeolocationDisclosureShownCount[]; | 855 extern const char kSearchGeolocationDisclosureShownCount[]; |
| 855 extern const char kSearchGeolocationDisclosureLastShowDate[]; | 856 extern const char kSearchGeolocationDisclosureLastShowDate[]; |
| 856 #endif | 857 #endif |
| 857 | 858 |
| 858 } // namespace prefs | 859 } // namespace prefs |
| 859 | 860 |
| 860 #endif // CHROME_COMMON_PREF_NAMES_H_ | 861 #endif // CHROME_COMMON_PREF_NAMES_H_ |
| OLD | NEW |