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

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

Issue 1087733002: Revert "Add option to export tracing events to ETW." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "content/public/common/content_switches.h" 5 #include "content/public/common/content_switches.h"
6 6
7 namespace switches { 7 namespace switches {
8 8
9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to 9 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to
10 // have an effect. 0 disables MSAA. 10 // have an effect. 0 disables MSAA.
(...skipping 969 matching lines...) Expand 10 before | Expand all | Expand 10 after
980 // which enter the kernel. This is only supported on Windows 8 and beyond. 980 // which enter the kernel. This is only supported on Windows 8 and beyond.
981 const char kDisableWin32kRendererLockDown[] = 981 const char kDisableWin32kRendererLockDown[] =
982 "disable-win32k-renderer-lockdown"; 982 "disable-win32k-renderer-lockdown";
983 const char kEnableWin32kRendererLockDown[] = 983 const char kEnableWin32kRendererLockDown[] =
984 "enable-win32k-renderer-lockdown"; 984 "enable-win32k-renderer-lockdown";
985 985
986 // DirectWrite FontCache is shared by browser to renderers using shared memory. 986 // DirectWrite FontCache is shared by browser to renderers using shared memory.
987 // This switch allows specifying suffix to shared memory section name to avoid 987 // This switch allows specifying suffix to shared memory section name to avoid
988 // clashes between different instances of Chrome. 988 // clashes between different instances of Chrome.
989 const char kFontCacheSharedMemSuffix[] = "font-cache-shared-mem-suffix"; 989 const char kFontCacheSharedMemSuffix[] = "font-cache-shared-mem-suffix";
990
991 // Enables the exporting of the tracing events to ETW. This is only supported on
992 // Windows Vista and later.
993 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
994 #endif 990 #endif
995 991
996 // Enables the use of NPAPI plugins. 992 // Enables the use of NPAPI plugins.
997 const char kEnableNpapi[] = "enable-npapi"; 993 const char kEnableNpapi[] = "enable-npapi";
998 994
999 // Don't dump stuff here, follow the same order as the header. 995 // Don't dump stuff here, follow the same order as the header.
1000 996
1001 } // namespace switches 997 } // namespace switches
OLDNEW
« no previous file with comments | « content/public/common/content_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698