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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 CONTENT_EXPORT extern const char kPpapiBrokerProcess[]; | 164 CONTENT_EXPORT extern const char kPpapiBrokerProcess[]; |
165 CONTENT_EXPORT extern const char kPpapiInProcess[]; | 165 CONTENT_EXPORT extern const char kPpapiInProcess[]; |
166 extern const char kPpapiPluginLauncher[]; | 166 extern const char kPpapiPluginLauncher[]; |
167 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; | 167 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; |
168 extern const char kPpapiStartupDialog[]; | 168 extern const char kPpapiStartupDialog[]; |
169 CONTENT_EXPORT extern const char kProcessPerSite[]; | 169 CONTENT_EXPORT extern const char kProcessPerSite[]; |
170 CONTENT_EXPORT extern const char kProcessPerTab[]; | 170 CONTENT_EXPORT extern const char kProcessPerTab[]; |
171 CONTENT_EXPORT extern const char kProcessType[]; | 171 CONTENT_EXPORT extern const char kProcessType[]; |
172 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; | 172 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; |
173 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; | 173 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; |
| 174 #if defined(OS_ANDROID) |
| 175 CONTENT_EXPORT extern const char kRemoteDebuggingSocketName[]; |
| 176 #endif |
174 CONTENT_EXPORT extern const char kRendererAssertTest[]; | 177 CONTENT_EXPORT extern const char kRendererAssertTest[]; |
175 extern const char kRendererCmdPrefix[]; | 178 extern const char kRendererCmdPrefix[]; |
176 CONTENT_EXPORT extern const char kRendererProcess[]; | 179 CONTENT_EXPORT extern const char kRendererProcess[]; |
177 extern const char kRendererProcessLimit[]; | 180 extern const char kRendererProcessLimit[]; |
178 extern const char kRendererStartupDialog[]; | 181 extern const char kRendererStartupDialog[]; |
179 extern const char kEnableAcceleratedOverflowScroll[]; | 182 extern const char kEnableAcceleratedOverflowScroll[]; |
180 extern const char kDisableAcceleratedOverflowScroll[]; | 183 extern const char kDisableAcceleratedOverflowScroll[]; |
181 extern const char kEnableAcceleratedScrollableFrames[]; | 184 extern const char kEnableAcceleratedScrollableFrames[]; |
182 extern const char kEnableCompositedScrollingForFrames[]; | 185 extern const char kEnableCompositedScrollingForFrames[]; |
183 extern const char kShowPaintRects[]; | 186 extern const char kShowPaintRects[]; |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 extern const char kDisableCarbonInterposing[]; | 239 extern const char kDisableCarbonInterposing[]; |
237 #endif | 240 #endif |
238 | 241 |
239 #if defined(USE_AURA) | 242 #if defined(USE_AURA) |
240 CONTENT_EXPORT extern const char kTestCompositor[]; | 243 CONTENT_EXPORT extern const char kTestCompositor[]; |
241 #endif | 244 #endif |
242 | 245 |
243 } // namespace switches | 246 } // namespace switches |
244 | 247 |
245 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 248 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |