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