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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 CONTENT_EXPORT extern const char kLogGpuControlListDecisions[]; | 205 CONTENT_EXPORT extern const char kLogGpuControlListDecisions[]; |
206 CONTENT_EXPORT extern const char kLoggingLevel[]; | 206 CONTENT_EXPORT extern const char kLoggingLevel[]; |
207 CONTENT_EXPORT extern const char kLogNetLog[]; | 207 CONTENT_EXPORT extern const char kLogNetLog[]; |
208 extern const char kLogPluginMessages[]; | 208 extern const char kLogPluginMessages[]; |
209 extern const char kMaxUntiledLayerHeight[]; | 209 extern const char kMaxUntiledLayerHeight[]; |
210 extern const char kMaxUntiledLayerWidth[]; | 210 extern const char kMaxUntiledLayerWidth[]; |
211 extern const char kMemoryMetrics[]; | 211 extern const char kMemoryMetrics[]; |
212 CONTENT_EXPORT extern const char kMuteAudio[]; | 212 CONTENT_EXPORT extern const char kMuteAudio[]; |
213 CONTENT_EXPORT extern const char kNoReferrers[]; | 213 CONTENT_EXPORT extern const char kNoReferrers[]; |
214 CONTENT_EXPORT extern const char kNoSandbox[]; | 214 CONTENT_EXPORT extern const char kNoSandbox[]; |
| 215 CONTENT_EXPORT extern const char kNumRasterThreads[]; |
215 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; | 216 CONTENT_EXPORT extern const char kOverscrollHistoryNavigation[]; |
216 extern const char kPluginLauncher[]; | 217 extern const char kPluginLauncher[]; |
217 CONTENT_EXPORT extern const char kPluginPath[]; | 218 CONTENT_EXPORT extern const char kPluginPath[]; |
218 CONTENT_EXPORT extern const char kPluginProcess[]; | 219 CONTENT_EXPORT extern const char kPluginProcess[]; |
219 extern const char kPluginStartupDialog[]; | 220 extern const char kPluginStartupDialog[]; |
220 CONTENT_EXPORT extern const char kPpapiBrokerProcess[]; | 221 CONTENT_EXPORT extern const char kPpapiBrokerProcess[]; |
221 CONTENT_EXPORT extern const char kPpapiFlashArgs[]; | 222 CONTENT_EXPORT extern const char kPpapiFlashArgs[]; |
222 CONTENT_EXPORT extern const char kPpapiInProcess[]; | 223 CONTENT_EXPORT extern const char kPpapiInProcess[]; |
223 extern const char kPpapiPluginLauncher[]; | 224 extern const char kPpapiPluginLauncher[]; |
224 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; | 225 CONTENT_EXPORT extern const char kPpapiPluginProcess[]; |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
315 #if defined(OS_POSIX) | 316 #if defined(OS_POSIX) |
316 extern const char kChildCleanExit[]; | 317 extern const char kChildCleanExit[]; |
317 #endif | 318 #endif |
318 | 319 |
319 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 320 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
320 // alphabetical order, or in one of the ifdefs (also in order in each section). | 321 // alphabetical order, or in one of the ifdefs (also in order in each section). |
321 | 322 |
322 } // namespace switches | 323 } // namespace switches |
323 | 324 |
324 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 325 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |