| 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 994 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1005 // and ignored if invalid. Specified as a pair of comma separated integers. | 1005 // and ignored if invalid. Specified as a pair of comma separated integers. |
| 1006 // See base/win/memory_pressure_monitor.cc for defaults. | 1006 // See base/win/memory_pressure_monitor.cc for defaults. |
| 1007 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1007 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1008 | 1008 |
| 1009 // Enables the exporting of the tracing events to ETW. This is only supported on | 1009 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1010 // Windows Vista and later. | 1010 // Windows Vista and later. |
| 1011 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1011 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1012 #endif | 1012 #endif |
| 1013 | 1013 |
| 1014 // Enables the use of NPAPI plugins. | 1014 // Enables the use of NPAPI plugins. |
| 1015 const char kEnableNpapi[] = "enable-npapi"; | 1015 const char kEnableNpapiForTesting[] = "enable-npapi-for-testing"; |
| 1016 | 1016 |
| 1017 // Don't dump stuff here, follow the same order as the header. | 1017 // Don't dump stuff here, follow the same order as the header. |
| 1018 | 1018 |
| 1019 } // namespace switches | 1019 } // namespace switches |
| OLD | NEW |