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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 extern const char kPluginStartupDialog[]; | 159 extern const char kPluginStartupDialog[]; |
160 CONTENT_EXPORT extern const char kPpapiBrokerProcess[]; | 160 CONTENT_EXPORT extern const char kPpapiBrokerProcess[]; |
161 CONTENT_EXPORT extern const char kPpapiOutOfProcess[]; | 161 CONTENT_EXPORT extern const char kPpapiOutOfProcess[]; |
162 extern const char kPpapiPluginLauncher[]; | 162 extern const char kPpapiPluginLauncher[]; |
163 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; | 163 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; |
164 extern const char kPpapiStartupDialog[]; | 164 extern const char kPpapiStartupDialog[]; |
165 CONTENT_EXPORT extern const char kProcessPerSite[]; | 165 CONTENT_EXPORT extern const char kProcessPerSite[]; |
166 CONTENT_EXPORT extern const char kProcessPerTab[]; | 166 CONTENT_EXPORT extern const char kProcessPerTab[]; |
167 CONTENT_EXPORT extern const char kProcessType[]; | 167 CONTENT_EXPORT extern const char kProcessType[]; |
168 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; | 168 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; |
169 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; | |
170 CONTENT_EXPORT extern const char kRendererAssertTest[]; | 169 CONTENT_EXPORT extern const char kRendererAssertTest[]; |
171 extern const char kRendererCmdPrefix[]; | 170 extern const char kRendererCmdPrefix[]; |
172 CONTENT_EXPORT extern const char kRendererProcess[]; | 171 CONTENT_EXPORT extern const char kRendererProcess[]; |
173 extern const char kRendererProcessLimit[]; | 172 extern const char kRendererProcessLimit[]; |
174 extern const char kRendererStartupDialog[]; | 173 extern const char kRendererStartupDialog[]; |
175 // TODO(jam): this doesn't belong in content. | 174 // TODO(jam): this doesn't belong in content. |
176 CONTENT_EXPORT extern const char kServiceProcess[]; | 175 CONTENT_EXPORT extern const char kServiceProcess[]; |
177 extern const char kShowCompositedLayerBorders[]; | 176 extern const char kShowCompositedLayerBorders[]; |
178 extern const char kShowCompositedLayerTree[]; | 177 extern const char kShowCompositedLayerTree[]; |
179 extern const char kShowFPSCounter[]; | 178 extern const char kShowFPSCounter[]; |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 | 230 |
232 #if defined(USE_AURA) | 231 #if defined(USE_AURA) |
233 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; | 232 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; |
234 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; | 233 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; |
235 CONTENT_EXPORT extern const char kTestCompositor[]; | 234 CONTENT_EXPORT extern const char kTestCompositor[]; |
236 #endif | 235 #endif |
237 | 236 |
238 } // namespace switches | 237 } // namespace switches |
239 | 238 |
240 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 239 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |