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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
162 #endif | 162 #endif |
163 #if defined(OS_MACOSX) | 163 #if defined(OS_MACOSX) |
164 extern const char kConfirmToQuitEnabled[]; | 164 extern const char kConfirmToQuitEnabled[]; |
165 extern const char kHideFullscreenToolbar[]; | 165 extern const char kHideFullscreenToolbar[]; |
166 extern const char kShowFullscreenToolbar[]; | 166 extern const char kShowFullscreenToolbar[]; |
167 #endif | 167 #endif |
168 extern const char kPromptForDownload[]; | 168 extern const char kPromptForDownload[]; |
169 extern const char kAlternateErrorPagesEnabled[]; | 169 extern const char kAlternateErrorPagesEnabled[]; |
170 extern const char kDnsPrefetchingStartupList[]; | 170 extern const char kDnsPrefetchingStartupList[]; |
171 extern const char kDnsPrefetchingHostReferralList[]; | 171 extern const char kDnsPrefetchingHostReferralList[]; |
172 extern const char kDisableSpdy[]; | |
173 extern const char kHttpServerProperties[]; | 172 extern const char kHttpServerProperties[]; |
174 #if defined(OS_ANDROID) | 173 #if defined(OS_ANDROID) |
175 extern const char kLastPolicyCheckTime[]; | 174 extern const char kLastPolicyCheckTime[]; |
176 #endif | 175 #endif |
177 extern const char kInstantUIZeroSuggestUrlPrefix[]; | 176 extern const char kInstantUIZeroSuggestUrlPrefix[]; |
178 extern const char kNetworkPredictionEnabled[]; | |
179 extern const char kNetworkPredictionOptions[]; | 177 extern const char kNetworkPredictionOptions[]; |
180 extern const char kDefaultAppsInstallState[]; | 178 extern const char kDefaultAppsInstallState[]; |
181 extern const char kHideWebStoreIcon[]; | 179 extern const char kHideWebStoreIcon[]; |
182 #if defined(OS_CHROMEOS) | 180 #if defined(OS_CHROMEOS) |
183 extern const char kTapToClickEnabled[]; | 181 extern const char kTapToClickEnabled[]; |
184 extern const char kTapDraggingEnabled[]; | 182 extern const char kTapDraggingEnabled[]; |
185 extern const char kEnableTouchpadThreeFingerClick[]; | 183 extern const char kEnableTouchpadThreeFingerClick[]; |
186 extern const char kNaturalScroll[]; | 184 extern const char kNaturalScroll[]; |
187 extern const char kPrimaryMouseButtonRight[]; | 185 extern const char kPrimaryMouseButtonRight[]; |
188 extern const char kMouseSensitivity[]; | 186 extern const char kMouseSensitivity[]; |
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
810 #endif // defined(GOOGLE_CHROME_BUILD) | 808 #endif // defined(GOOGLE_CHROME_BUILD) |
811 extern const char kMediaRouterFirstRunFlowAcknowledged[]; | 809 extern const char kMediaRouterFirstRunFlowAcknowledged[]; |
812 #endif | 810 #endif |
813 | 811 |
814 extern const char kOriginTrialPublicKey[]; | 812 extern const char kOriginTrialPublicKey[]; |
815 extern const char kOriginTrialDisabledFeatures[]; | 813 extern const char kOriginTrialDisabledFeatures[]; |
816 | 814 |
817 } // namespace prefs | 815 } // namespace prefs |
818 | 816 |
819 #endif // CHROME_COMMON_PREF_NAMES_H_ | 817 #endif // CHROME_COMMON_PREF_NAMES_H_ |
OLD | NEW |