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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
304 CONTENT_EXPORT extern const char kDisableWin32kRendererLockDown[]; | 304 CONTENT_EXPORT extern const char kDisableWin32kRendererLockDown[]; |
305 CONTENT_EXPORT extern const char kEnableWin32kLockDownMimeTypes[]; | 305 CONTENT_EXPORT extern const char kEnableWin32kLockDownMimeTypes[]; |
306 CONTENT_EXPORT extern const char kEnableAcceleratedVpxDecode[]; | 306 CONTENT_EXPORT extern const char kEnableAcceleratedVpxDecode[]; |
307 CONTENT_EXPORT extern const char kEnableWin7WebRtcHWH264Decoding[]; | 307 CONTENT_EXPORT extern const char kEnableWin7WebRtcHWH264Decoding[]; |
308 // Switch to pass the font cache shared memory handle to the renderer. | 308 // Switch to pass the font cache shared memory handle to the renderer. |
309 CONTENT_EXPORT extern const char kFontCacheSharedHandle[]; | 309 CONTENT_EXPORT extern const char kFontCacheSharedHandle[]; |
310 CONTENT_EXPORT extern const char kMemoryPressureThresholdsMb[]; | 310 CONTENT_EXPORT extern const char kMemoryPressureThresholdsMb[]; |
311 CONTENT_EXPORT extern const char kTraceExportEventsToETW[]; | 311 CONTENT_EXPORT extern const char kTraceExportEventsToETW[]; |
312 #endif | 312 #endif |
313 | 313 |
314 #if defined(ENABLE_IPC_FUZZER) | |
315 CONTENT_EXPORT extern const char kIpcDumpDirectory[]; | |
jochen (gone - plz use gerrit)
2016/06/07 15:10:29
is this used outside of content? If not, drop CONT
Oliver Chang
2016/06/07 15:41:17
Yeah, it is used outside of content.
| |
316 CONTENT_EXPORT extern const char kIpcFuzzerTestcase[]; | |
317 #endif | |
318 | |
314 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 319 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
315 // alphabetical order, or in one of the ifdefs (also in order in each section). | 320 // alphabetical order, or in one of the ifdefs (also in order in each section). |
316 | 321 |
317 } // namespace switches | 322 } // namespace switches |
318 | 323 |
319 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ | 324 #endif // CONTENT_PUBLIC_COMMON_CONTENT_SWITCHES_H_ |
OLD | NEW |