| 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 #pragma once | 9 #pragma once |
| 10 | 10 |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 extern const char kPpapiPluginLauncher[]; | 150 extern const char kPpapiPluginLauncher[]; |
| 151 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; | 151 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; |
| 152 extern const char kPpapiStartupDialog[]; | 152 extern const char kPpapiStartupDialog[]; |
| 153 extern const char kProcessPerSite[]; | 153 extern const char kProcessPerSite[]; |
| 154 CONTENT_EXPORT extern const char kProcessPerTab[]; | 154 CONTENT_EXPORT extern const char kProcessPerTab[]; |
| 155 CONTENT_EXPORT extern const char kProcessType[]; | 155 CONTENT_EXPORT extern const char kProcessType[]; |
| 156 CONTENT_EXPORT extern const char kRecordMode[]; | 156 CONTENT_EXPORT extern const char kRecordMode[]; |
| 157 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; | 157 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; |
| 158 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; | 158 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; |
| 159 CONTENT_EXPORT extern const char kRendererAssertTest[]; | 159 CONTENT_EXPORT extern const char kRendererAssertTest[]; |
| 160 #if defined(OS_POSIX) |
| 161 extern const char kRendererCleanExit[]; |
| 162 #endif |
| 160 extern const char kRendererCmdPrefix[]; | 163 extern const char kRendererCmdPrefix[]; |
| 161 CONTENT_EXPORT extern const char kRendererCrashTest[]; | 164 CONTENT_EXPORT extern const char kRendererCrashTest[]; |
| 162 CONTENT_EXPORT extern const char kRendererProcess[]; | 165 CONTENT_EXPORT extern const char kRendererProcess[]; |
| 163 extern const char kRendererProcessLimit[]; | 166 extern const char kRendererProcessLimit[]; |
| 164 extern const char kRendererStartupDialog[]; | 167 extern const char kRendererStartupDialog[]; |
| 165 // TODO(jam): this doesn't belong in content. | 168 // TODO(jam): this doesn't belong in content. |
| 166 CONTENT_EXPORT extern const char kServiceProcess[]; | 169 CONTENT_EXPORT extern const char kServiceProcess[]; |
| 167 extern const char kShowCompositedLayerBorders[]; | 170 extern const char kShowCompositedLayerBorders[]; |
| 168 extern const char kShowCompositedLayerTree[]; | 171 extern const char kShowCompositedLayerTree[]; |
| 169 extern const char kShowFPSCounter[]; | 172 extern const char kShowFPSCounter[]; |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 | 209 |
| 207 #if defined(USE_AURA) | 210 #if defined(USE_AURA) |
| 208 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; | 211 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; |
| 209 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; | 212 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; |
| 210 CONTENT_EXPORT extern const char kTestCompositor[]; | 213 CONTENT_EXPORT extern const char kTestCompositor[]; |
| 211 #endif | 214 #endif |
| 212 | 215 |
| 213 } // namespace switches | 216 } // namespace switches |
| 214 | 217 |
| 215 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 218 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |