| 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 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 669 | 669 |
| 670 // Ignores certificate-related errors. | 670 // Ignores certificate-related errors. |
| 671 const char kIgnoreCertificateErrors[] = "ignore-certificate-errors"; | 671 const char kIgnoreCertificateErrors[] = "ignore-certificate-errors"; |
| 672 | 672 |
| 673 // Ignores GPU blacklist. | 673 // Ignores GPU blacklist. |
| 674 const char kIgnoreGpuBlacklist[] = "ignore-gpu-blacklist"; | 674 const char kIgnoreGpuBlacklist[] = "ignore-gpu-blacklist"; |
| 675 | 675 |
| 676 // Run the GPU process as a thread in the browser process. | 676 // Run the GPU process as a thread in the browser process. |
| 677 const char kInProcessGPU[] = "in-process-gpu"; | 677 const char kInProcessGPU[] = "in-process-gpu"; |
| 678 | 678 |
| 679 // These mappings only apply to the host resolver, and can insert additional | |
| 680 // resolutions in front of resolutions that match a pattern. | |
| 681 const char kIpResolverRules[] = "ip-resolver-rules"; | |
| 682 | |
| 683 // Specifies the flags passed to JS engine | 679 // Specifies the flags passed to JS engine |
| 684 const char kJavaScriptFlags[] = "js-flags"; | 680 const char kJavaScriptFlags[] = "js-flags"; |
| 685 | 681 |
| 686 // Load an NPAPI plugin from the specified path. | 682 // Load an NPAPI plugin from the specified path. |
| 687 const char kLoadPlugin[] = "load-plugin"; | 683 const char kLoadPlugin[] = "load-plugin"; |
| 688 | 684 |
| 689 // Logs GPU control list decisions when enforcing blacklist rules. | 685 // Logs GPU control list decisions when enforcing blacklist rules. |
| 690 const char kLogGpuControlListDecisions[] = "log-gpu-control-list-decisions"; | 686 const char kLogGpuControlListDecisions[] = "log-gpu-control-list-decisions"; |
| 691 | 687 |
| 692 // Sets the minimum log level. Valid values are from 0 to 3: | 688 // Sets the minimum log level. Valid values are from 0 to 3: |
| (...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1052 #endif | 1048 #endif |
| 1053 | 1049 |
| 1054 #if defined(OS_POSIX) | 1050 #if defined(OS_POSIX) |
| 1055 // Causes the child processes to cleanly exit via calling exit(). | 1051 // Causes the child processes to cleanly exit via calling exit(). |
| 1056 const char kChildCleanExit[] = "child-clean-exit"; | 1052 const char kChildCleanExit[] = "child-clean-exit"; |
| 1057 #endif | 1053 #endif |
| 1058 | 1054 |
| 1059 // Don't dump stuff here, follow the same order as the header. | 1055 // Don't dump stuff here, follow the same order as the header. |
| 1060 | 1056 |
| 1061 } // namespace switches | 1057 } // namespace switches |
| OLD | NEW |