| 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
| 7 | 7 |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
| (...skipping 573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 584 | 584 |
| 585 // These mappings only apply to the host resolver. | 585 // These mappings only apply to the host resolver. |
| 586 const char kHostResolverRules[] = "host-resolver-rules"; | 586 const char kHostResolverRules[] = "host-resolver-rules"; |
| 587 | 587 |
| 588 // Ignores certificate-related errors. | 588 // Ignores certificate-related errors. |
| 589 const char kIgnoreCertificateErrors[] = "ignore-certificate-errors"; | 589 const char kIgnoreCertificateErrors[] = "ignore-certificate-errors"; |
| 590 | 590 |
| 591 // Ignores GPU blacklist. | 591 // Ignores GPU blacklist. |
| 592 const char kIgnoreGpuBlacklist[] = "ignore-gpu-blacklist"; | 592 const char kIgnoreGpuBlacklist[] = "ignore-gpu-blacklist"; |
| 593 | 593 |
| 594 // Makes all APIs reflect the layout viewport. |
| 595 const char kInertVisualViewport[] = "inert-visual-viewport"; |
| 596 |
| 594 // Run the GPU process as a thread in the browser process. | 597 // Run the GPU process as a thread in the browser process. |
| 595 const char kInProcessGPU[] = "in-process-gpu"; | 598 const char kInProcessGPU[] = "in-process-gpu"; |
| 596 | 599 |
| 597 // Overrides the timeout, in seconds, that a child process waits for a | 600 // Overrides the timeout, in seconds, that a child process waits for a |
| 598 // connection from the browser before killing itself. | 601 // connection from the browser before killing itself. |
| 599 const char kIPCConnectionTimeout[] = "ipc-connection-timeout"; | 602 const char kIPCConnectionTimeout[] = "ipc-connection-timeout"; |
| 600 | 603 |
| 601 // Specifies the flags passed to JS engine | 604 // Specifies the flags passed to JS engine |
| 602 const char kJavaScriptFlags[] = "js-flags"; | 605 const char kJavaScriptFlags[] = "js-flags"; |
| 603 | 606 |
| (...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1048 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1051 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1049 | 1052 |
| 1050 // Enables the exporting of the tracing events to ETW. This is only supported on | 1053 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1051 // Windows Vista and later. | 1054 // Windows Vista and later. |
| 1052 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1055 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1053 #endif | 1056 #endif |
| 1054 | 1057 |
| 1055 // Don't dump stuff here, follow the same order as the header. | 1058 // Don't dump stuff here, follow the same order as the header. |
| 1056 | 1059 |
| 1057 } // namespace switches | 1060 } // namespace switches |
| OLD | NEW |