Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(580)

Side by Side Diff: content/public/common/content_switches.h

Issue 2043933002: Move IPC fuzzer switches and helpers from chrome/common to content/common. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comments Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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[];
316 CONTENT_EXPORT extern const char kIpcFuzzerTestcase[];
317 #endif
jochen (gone - plz use gerrit) 2016/06/07 18:53:41 seems like it's just used in chrome to copy the sw
Oliver Chang 2016/06/07 21:27:36 Done. But I would like to keep the CONTENT_EXPORT,
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698