| 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 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 668 | 668 |
| 669 // Ignores certificate-related errors. | 669 // Ignores certificate-related errors. |
| 670 const char kIgnoreCertificateErrors[] = "ignore-certificate-errors"; | 670 const char kIgnoreCertificateErrors[] = "ignore-certificate-errors"; |
| 671 | 671 |
| 672 // Ignores GPU blacklist. | 672 // Ignores GPU blacklist. |
| 673 const char kIgnoreGpuBlacklist[] = "ignore-gpu-blacklist"; | 673 const char kIgnoreGpuBlacklist[] = "ignore-gpu-blacklist"; |
| 674 | 674 |
| 675 // Run the GPU process as a thread in the browser process. | 675 // Run the GPU process as a thread in the browser process. |
| 676 const char kInProcessGPU[] = "in-process-gpu"; | 676 const char kInProcessGPU[] = "in-process-gpu"; |
| 677 | 677 |
| 678 // Runs plugins inside the renderer process | |
| 679 const char kInProcessPlugins[] = "in-process-plugins"; | |
| 680 | |
| 681 // Specifies the flags passed to JS engine | 678 // Specifies the flags passed to JS engine |
| 682 const char kJavaScriptFlags[] = "js-flags"; | 679 const char kJavaScriptFlags[] = "js-flags"; |
| 683 | 680 |
| 684 // Load an NPAPI plugin from the specified path. | 681 // Load an NPAPI plugin from the specified path. |
| 685 const char kLoadPlugin[] = "load-plugin"; | 682 const char kLoadPlugin[] = "load-plugin"; |
| 686 | 683 |
| 687 // Logs GPU control list decisions when enforcing blacklist rules. | 684 // Logs GPU control list decisions when enforcing blacklist rules. |
| 688 const char kLogGpuControlListDecisions[] = "log-gpu-control-list-decisions"; | 685 const char kLogGpuControlListDecisions[] = "log-gpu-control-list-decisions"; |
| 689 | 686 |
| 690 // Sets the minimum log level. Valid values are from 0 to 3: | 687 // Sets the minimum log level. Valid values are from 0 to 3: |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1048 #endif | 1045 #endif |
| 1049 | 1046 |
| 1050 #if defined(OS_POSIX) | 1047 #if defined(OS_POSIX) |
| 1051 // Causes the child processes to cleanly exit via calling exit(). | 1048 // Causes the child processes to cleanly exit via calling exit(). |
| 1052 const char kChildCleanExit[] = "child-clean-exit"; | 1049 const char kChildCleanExit[] = "child-clean-exit"; |
| 1053 #endif | 1050 #endif |
| 1054 | 1051 |
| 1055 // Don't dump stuff here, follow the same order as the header. | 1052 // Don't dump stuff here, follow the same order as the header. |
| 1056 | 1053 |
| 1057 } // namespace switches | 1054 } // namespace switches |
| OLD | NEW |