Chromium Code Reviews| 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 #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 966 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 977 // under moderate and critical memory pressure. Used in the browser process, | 977 // under moderate and critical memory pressure. Used in the browser process, |
| 978 // and ignored if invalid. Specified as a pair of comma separated integers. | 978 // and ignored if invalid. Specified as a pair of comma separated integers. |
| 979 // See base/win/memory_pressure_monitor.cc for defaults. | 979 // See base/win/memory_pressure_monitor.cc for defaults. |
| 980 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 980 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 981 | 981 |
| 982 // Enables the exporting of the tracing events to ETW. This is only supported on | 982 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 983 // Windows Vista and later. | 983 // Windows Vista and later. |
| 984 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 984 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 985 #endif | 985 #endif |
| 986 | 986 |
| 987 #if defined(MOJO_SHELL_CLIENT) | |
| 988 // Enable the Mojo shell connection in renderers. | |
|
Fady Samuel
2015/12/02 16:20:33
Move to content/common.
Peng
2015/12/02 16:33:32
Done.
| |
| 989 const char kEnableMojoShellConnection[] = "enable-mojo-shell-connection"; | |
| 990 #endif | |
| 991 | |
| 987 // Don't dump stuff here, follow the same order as the header. | 992 // Don't dump stuff here, follow the same order as the header. |
| 988 | 993 |
| 989 } // namespace switches | 994 } // namespace switches |
| OLD | NEW |