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

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

Issue 1472063007: mustash: enable GPU Compositing in renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address issues. Created 5 years 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 #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 965 matching lines...) Expand 10 before | Expand all | Expand 10 after
976 // under moderate and critical memory pressure. Used in the browser process, 976 // under moderate and critical memory pressure. Used in the browser process,
977 // and ignored if invalid. Specified as a pair of comma separated integers. 977 // and ignored if invalid. Specified as a pair of comma separated integers.
978 // See base/win/memory_pressure_monitor.cc for defaults. 978 // See base/win/memory_pressure_monitor.cc for defaults.
979 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; 979 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb";
980 980
981 // Enables the exporting of the tracing events to ETW. This is only supported on 981 // Enables the exporting of the tracing events to ETW. This is only supported on
982 // Windows Vista and later. 982 // Windows Vista and later.
983 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; 983 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw";
984 #endif 984 #endif
985 985
986 // Enable the Mojo shell connection in renderers.
987 const char kEnableMojoShellConnection[] = "enable-mojo-shell-connection";
988
986 // Don't dump stuff here, follow the same order as the header. 989 // Don't dump stuff here, follow the same order as the header.
987 990
988 } // namespace switches 991 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698