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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 // TODO(jam): this doesn't belong in content. | 132 // TODO(jam): this doesn't belong in content. |
133 CONTENT_EXPORT extern const char kNaClBrokerProcess[]; | 133 CONTENT_EXPORT extern const char kNaClBrokerProcess[]; |
134 CONTENT_EXPORT extern const char kNaClLoaderProcess[]; | 134 CONTENT_EXPORT extern const char kNaClLoaderProcess[]; |
135 CONTENT_EXPORT extern const char kNoReferrers[]; | 135 CONTENT_EXPORT extern const char kNoReferrers[]; |
136 CONTENT_EXPORT extern const char kNoSandbox[]; | 136 CONTENT_EXPORT extern const char kNoSandbox[]; |
137 extern const char kPluginLauncher[]; | 137 extern const char kPluginLauncher[]; |
138 CONTENT_EXPORT extern const char kPluginPath[]; | 138 CONTENT_EXPORT extern const char kPluginPath[]; |
139 CONTENT_EXPORT extern const char kPluginProcess[]; | 139 CONTENT_EXPORT extern const char kPluginProcess[]; |
140 extern const char kPluginStartupDialog[]; | 140 extern const char kPluginStartupDialog[]; |
141 CONTENT_EXPORT extern const char kPpapiBrokerProcess[]; | 141 CONTENT_EXPORT extern const char kPpapiBrokerProcess[]; |
142 CONTENT_EXPORT extern const char kPpapiFlashArgs[]; | |
143 CONTENT_EXPORT extern const char kPpapiFlashPath[]; | 142 CONTENT_EXPORT extern const char kPpapiFlashPath[]; |
144 CONTENT_EXPORT extern const char kPpapiFlashVersion[]; | 143 CONTENT_EXPORT extern const char kPpapiFlashVersion[]; |
145 CONTENT_EXPORT extern const char kPpapiOutOfProcess[]; | 144 CONTENT_EXPORT extern const char kPpapiOutOfProcess[]; |
146 extern const char kPpapiPluginLauncher[]; | 145 extern const char kPpapiPluginLauncher[]; |
147 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; | 146 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; |
148 extern const char kPpapiStartupDialog[]; | 147 extern const char kPpapiStartupDialog[]; |
149 extern const char kProcessPerSite[]; | 148 extern const char kProcessPerSite[]; |
150 CONTENT_EXPORT extern const char kProcessPerTab[]; | 149 CONTENT_EXPORT extern const char kProcessPerTab[]; |
151 CONTENT_EXPORT extern const char kProcessType[]; | 150 CONTENT_EXPORT extern const char kProcessType[]; |
152 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; | 151 CONTENT_EXPORT extern const char kRegisterPepperPlugins[]; |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 | 198 |
200 #if defined(USE_AURA) | 199 #if defined(USE_AURA) |
201 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; | 200 CONTENT_EXPORT extern const char kFlingTapSuppressMaxDown[]; |
202 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; | 201 CONTENT_EXPORT extern const char kFlingTapSuppressMaxGap[]; |
203 CONTENT_EXPORT extern const char kTestCompositor[]; | 202 CONTENT_EXPORT extern const char kTestCompositor[]; |
204 #endif | 203 #endif |
205 | 204 |
206 } // namespace switches | 205 } // namespace switches |
207 | 206 |
208 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 207 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |