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 // Defines all the "content" command-line switches. | 5 // Defines all the "content" command-line switches. |
6 | 6 |
7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 7 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
8 #define CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 8 #define CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
9 | 9 |
10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 CONTENT_EXPORT extern const char kSitePerProcess[]; | 188 CONTENT_EXPORT extern const char kSitePerProcess[]; |
189 CONTENT_EXPORT extern const char kSkipGpuDataLoading[]; | 189 CONTENT_EXPORT extern const char kSkipGpuDataLoading[]; |
190 extern const char kTapDownDeferralTimeMs[]; | 190 extern const char kTapDownDeferralTimeMs[]; |
191 CONTENT_EXPORT extern const char kTestSandbox[]; | 191 CONTENT_EXPORT extern const char kTestSandbox[]; |
192 CONTENT_EXPORT extern const char kTestingFixedHttpPort[]; | 192 CONTENT_EXPORT extern const char kTestingFixedHttpPort[]; |
193 CONTENT_EXPORT extern const char kTestingFixedHttpsPort[]; | 193 CONTENT_EXPORT extern const char kTestingFixedHttpsPort[]; |
194 extern const char kTraceStartup[]; | 194 extern const char kTraceStartup[]; |
195 extern const char kTraceStartupFile[]; | 195 extern const char kTraceStartupFile[]; |
196 extern const char kTraceStartupDuration[]; | 196 extern const char kTraceStartupDuration[]; |
197 CONTENT_EXPORT extern const char kUIPrioritizeInGpuProcess[]; | 197 CONTENT_EXPORT extern const char kUIPrioritizeInGpuProcess[]; |
| 198 extern const char kUseExynosVda[]; |
198 CONTENT_EXPORT extern const char kUserAgent[]; | 199 CONTENT_EXPORT extern const char kUserAgent[]; |
199 extern const char kUtilityCmdPrefix[]; | 200 extern const char kUtilityCmdPrefix[]; |
200 CONTENT_EXPORT extern const char kUtilityProcess[]; | 201 CONTENT_EXPORT extern const char kUtilityProcess[]; |
201 extern const char kUtilityProcessAllowedDir[]; | 202 extern const char kUtilityProcessAllowedDir[]; |
202 CONTENT_EXPORT extern const char kWaitForDebuggerChildren[]; | 203 CONTENT_EXPORT extern const char kWaitForDebuggerChildren[]; |
203 extern const char kWebCoreLogChannels[]; | 204 extern const char kWebCoreLogChannels[]; |
204 CONTENT_EXPORT extern const char kWebIntentsInvocationEnabled[]; | 205 CONTENT_EXPORT extern const char kWebIntentsInvocationEnabled[]; |
205 CONTENT_EXPORT extern const char kWorkerProcess[]; | 206 CONTENT_EXPORT extern const char kWorkerProcess[]; |
206 CONTENT_EXPORT extern const char kZygoteCmdPrefix[]; | 207 CONTENT_EXPORT extern const char kZygoteCmdPrefix[]; |
207 CONTENT_EXPORT extern const char kZygoteProcess[]; | 208 CONTENT_EXPORT extern const char kZygoteProcess[]; |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; | 241 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; |
241 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; | 242 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; |
242 CONTENT_EXPORT extern const char kTestCompositor[]; | 243 CONTENT_EXPORT extern const char kTestCompositor[]; |
243 #endif | 244 #endif |
244 | 245 |
245 CONTENT_EXPORT extern const char kEnableOverscrollHistoryNavigation[]; | 246 CONTENT_EXPORT extern const char kEnableOverscrollHistoryNavigation[]; |
246 | 247 |
247 } // namespace switches | 248 } // namespace switches |
248 | 249 |
249 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 250 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |