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 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
599 | 599 |
600 // Passes gpu vendor_id from browser process to GPU process. | 600 // Passes gpu vendor_id from browser process to GPU process. |
601 const char kGpuVendorID[] = "gpu-vendor-id"; | 601 const char kGpuVendorID[] = "gpu-vendor-id"; |
602 | 602 |
603 // Ignores certificate-related errors. | 603 // Ignores certificate-related errors. |
604 const char kIgnoreCertificateErrors[] = "ignore-certificate-errors"; | 604 const char kIgnoreCertificateErrors[] = "ignore-certificate-errors"; |
605 | 605 |
606 // These mappings only apply to the host resolver. | 606 // These mappings only apply to the host resolver. |
607 const char kHostResolverRules[] = "host-resolver-rules"; | 607 const char kHostResolverRules[] = "host-resolver-rules"; |
608 | 608 |
| 609 // Uses a specified proxy server, overrides system settings. This switch only |
| 610 // affects HTTP and HTTPS requests. ARC-apps use only HTTP proxy server with the |
| 611 // highest priority. |
| 612 const char kProxyServer[] = "proxy-server"; |
| 613 |
609 // Ignores GPU blacklist. | 614 // Ignores GPU blacklist. |
610 const char kIgnoreGpuBlacklist[] = "ignore-gpu-blacklist"; | 615 const char kIgnoreGpuBlacklist[] = "ignore-gpu-blacklist"; |
611 | 616 |
612 // Makes all APIs reflect the layout viewport. | 617 // Makes all APIs reflect the layout viewport. |
613 const char kInertVisualViewport[] = "inert-visual-viewport"; | 618 const char kInertVisualViewport[] = "inert-visual-viewport"; |
614 | 619 |
615 // Run the GPU process as a thread in the browser process. | 620 // Run the GPU process as a thread in the browser process. |
616 const char kInProcessGPU[] = "in-process-gpu"; | 621 const char kInProcessGPU[] = "in-process-gpu"; |
617 | 622 |
618 // Overrides the timeout, in seconds, that a child process waits for a | 623 // Overrides the timeout, in seconds, that a child process waits for a |
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1083 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1088 // the given directory. Used primarily to gather samples for IPC fuzzing. |
1084 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1089 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
1085 | 1090 |
1086 // Specifies the testcase used by the IPC fuzzer. | 1091 // Specifies the testcase used by the IPC fuzzer. |
1087 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1092 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
1088 #endif | 1093 #endif |
1089 | 1094 |
1090 // Don't dump stuff here, follow the same order as the header. | 1095 // Don't dump stuff here, follow the same order as the header. |
1091 | 1096 |
1092 } // namespace switches | 1097 } // namespace switches |
OLD | NEW |