| 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 CONTENT_EXPORT extern const char kPluginPath[]; | 150 CONTENT_EXPORT extern const char kPluginPath[]; |
| 151 CONTENT_EXPORT extern const char kPluginProcess[]; | 151 CONTENT_EXPORT extern const char kPluginProcess[]; |
| 152 extern const char kPluginStartupDialog[]; | 152 extern const char kPluginStartupDialog[]; |
| 153 CONTENT_EXPORT extern const char kPpapiBrokerProcess[]; | 153 CONTENT_EXPORT extern const char kPpapiBrokerProcess[]; |
| 154 CONTENT_EXPORT extern const char kPpapiFlashPath[]; | 154 CONTENT_EXPORT extern const char kPpapiFlashPath[]; |
| 155 CONTENT_EXPORT extern const char kPpapiFlashVersion[]; | 155 CONTENT_EXPORT extern const char kPpapiFlashVersion[]; |
| 156 CONTENT_EXPORT extern const char kPpapiOutOfProcess[]; | 156 CONTENT_EXPORT extern const char kPpapiOutOfProcess[]; |
| 157 extern const char kPpapiPluginLauncher[]; | 157 extern const char kPpapiPluginLauncher[]; |
| 158 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; | 158 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; |
| 159 extern const char kPpapiStartupDialog[]; | 159 extern const char kPpapiStartupDialog[]; |
| 160 extern const char kProcessPerSite[]; | 160 CONTENT_EXPORT extern const char kProcessPerSite[]; |
| 161 CONTENT_EXPORT extern const char kProcessPerTab[]; | 161 CONTENT_EXPORT extern const char kProcessPerTab[]; |
| 162 CONTENT_EXPORT extern const char kProcessType[]; | 162 CONTENT_EXPORT extern const char kProcessType[]; |
| 163 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; | 163 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; |
| 164 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; | 164 CONTENT_EXPORT extern const char kRemoteDebuggingPort[]; |
| 165 CONTENT_EXPORT extern const char kRendererAssertTest[]; | 165 CONTENT_EXPORT extern const char kRendererAssertTest[]; |
| 166 #if defined(OS_POSIX) | 166 #if defined(OS_POSIX) |
| 167 extern const char kRendererCleanExit[]; | 167 extern const char kRendererCleanExit[]; |
| 168 #endif | 168 #endif |
| 169 extern const char kRendererCmdPrefix[]; | 169 extern const char kRendererCmdPrefix[]; |
| 170 CONTENT_EXPORT extern const char kRendererProcess[]; | 170 CONTENT_EXPORT extern const char kRendererProcess[]; |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 | 215 |
| 216 #if defined(USE_AURA) | 216 #if defined(USE_AURA) |
| 217 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; | 217 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; |
| 218 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; | 218 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; |
| 219 CONTENT_EXPORT extern const char kTestCompositor[]; | 219 CONTENT_EXPORT extern const char kTestCompositor[]; |
| 220 #endif | 220 #endif |
| 221 | 221 |
| 222 } // namespace switches | 222 } // namespace switches |
| 223 | 223 |
| 224 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 224 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
| OLD | NEW |