| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 CONTENT_EXPORT extern const char kProcessPerTab[]; | 176 CONTENT_EXPORT extern const char kProcessPerTab[]; |
| 177 CONTENT_EXPORT extern const char kProcessType[]; | 177 CONTENT_EXPORT extern const char kProcessType[]; |
| 178 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; | 178 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; |
| 179 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; | 179 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; |
| 180 #if defined(OS_ANDROID) | 180 #if defined(OS_ANDROID) |
| 181 CONTENT_EXPORT extern const char kRemoteDebuggingSocketName[]; | 181 CONTENT_EXPORT extern const char kRemoteDebuggingSocketName[]; |
| 182 #endif | 182 #endif |
| 183 CONTENT_EXPORT extern const char kRendererAssertTest[]; | 183 CONTENT_EXPORT extern const char kRendererAssertTest[]; |
| 184 extern const char kRendererCmdPrefix[]; | 184 extern const char kRendererCmdPrefix[]; |
| 185 CONTENT_EXPORT extern const char kRendererProcess[]; | 185 CONTENT_EXPORT extern const char kRendererProcess[]; |
| 186 CONTENT_EXPORT extern const char kEnableVtune[]; |
| 186 extern const char kRendererProcessLimit[]; | 187 extern const char kRendererProcessLimit[]; |
| 187 extern const char kRendererStartupDialog[]; | 188 extern const char kRendererStartupDialog[]; |
| 188 extern const char kEnableAcceleratedOverflowScroll[]; | 189 extern const char kEnableAcceleratedOverflowScroll[]; |
| 189 extern const char kDisableAcceleratedOverflowScroll[]; | 190 extern const char kDisableAcceleratedOverflowScroll[]; |
| 190 extern const char kEnableAcceleratedScrollableFrames[]; | 191 extern const char kEnableAcceleratedScrollableFrames[]; |
| 191 extern const char kEnableCompositedScrollingForFrames[]; | 192 extern const char kEnableCompositedScrollingForFrames[]; |
| 192 extern const char kShowPaintRects[]; | 193 extern const char kShowPaintRects[]; |
| 193 CONTENT_EXPORT extern const char kSimulateTouchScreenWithMouse[]; | 194 CONTENT_EXPORT extern const char kSimulateTouchScreenWithMouse[]; |
| 194 CONTENT_EXPORT extern const char kSingleProcess[]; | 195 CONTENT_EXPORT extern const char kSingleProcess[]; |
| 195 CONTENT_EXPORT extern const char kSitePerProcess[]; | 196 CONTENT_EXPORT extern const char kSitePerProcess[]; |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 CONTENT_EXPORT extern const char kTestCompositor[]; | 249 CONTENT_EXPORT extern const char kTestCompositor[]; |
| 249 #endif | 250 #endif |
| 250 | 251 |
| 251 extern const char kEnableWebPInAcceptHeader[]; | 252 extern const char kEnableWebPInAcceptHeader[]; |
| 252 | 253 |
| 253 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; | 254 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; |
| 254 | 255 |
| 255 } // namespace switches | 256 } // namespace switches |
| 256 | 257 |
| 257 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 258 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |