| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 extern const char kRendererCmdPrefix[]; | 171 extern const char kRendererCmdPrefix[]; |
| 172 CONTENT_EXPORT extern const char kRendererProcess[]; | 172 CONTENT_EXPORT extern const char kRendererProcess[]; |
| 173 extern const char kRendererProcessLimit[]; | 173 extern const char kRendererProcessLimit[]; |
| 174 extern const char kRendererStartupDialog[]; | 174 extern const char kRendererStartupDialog[]; |
| 175 // TODO(jam): this doesn't belong in content. | 175 // TODO(jam): this doesn't belong in content. |
| 176 CONTENT_EXPORT extern const char kServiceProcess[]; | 176 CONTENT_EXPORT extern const char kServiceProcess[]; |
| 177 extern const char kShowCompositedLayerBorders[]; | 177 extern const char kShowCompositedLayerBorders[]; |
| 178 extern const char kShowCompositedLayerTree[]; | 178 extern const char kShowCompositedLayerTree[]; |
| 179 extern const char kShowFPSCounter[]; | 179 extern const char kShowFPSCounter[]; |
| 180 extern const char kShowPaintRects[]; | 180 extern const char kShowPaintRects[]; |
| 181 CONTENT_EXPORT extern const char kSimulateTouchScreenWithMouse[]; |
| 181 CONTENT_EXPORT extern const char kSingleProcess[]; | 182 CONTENT_EXPORT extern const char kSingleProcess[]; |
| 182 CONTENT_EXPORT extern const char kSkipGpuDataLoading[]; | 183 CONTENT_EXPORT extern const char kSkipGpuDataLoading[]; |
| 183 CONTENT_EXPORT extern const char kTestSandbox[]; | 184 CONTENT_EXPORT extern const char kTestSandbox[]; |
| 184 extern const char kTraceStartup[]; | 185 extern const char kTraceStartup[]; |
| 185 extern const char kTraceStartupFile[]; | 186 extern const char kTraceStartupFile[]; |
| 186 extern const char kTraceStartupDuration[]; | 187 extern const char kTraceStartupDuration[]; |
| 187 CONTENT_EXPORT extern const char kUIPrioritizeInGpuProcess[]; | 188 CONTENT_EXPORT extern const char kUIPrioritizeInGpuProcess[]; |
| 188 CONTENT_EXPORT extern const char kUserAgent[]; | 189 CONTENT_EXPORT extern const char kUserAgent[]; |
| 189 extern const char kUtilityCmdPrefix[]; | 190 extern const char kUtilityCmdPrefix[]; |
| 190 CONTENT_EXPORT extern const char kUtilityProcess[]; | 191 CONTENT_EXPORT extern const char kUtilityProcess[]; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 | 231 |
| 231 #if defined(USE_AURA) | 232 #if defined(USE_AURA) |
| 232 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; | 233 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; |
| 233 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; | 234 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; |
| 234 CONTENT_EXPORT extern const char kTestCompositor[]; | 235 CONTENT_EXPORT extern const char kTestCompositor[]; |
| 235 #endif | 236 #endif |
| 236 | 237 |
| 237 } // namespace switches | 238 } // namespace switches |
| 238 | 239 |
| 239 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 240 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |