| 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 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 623 // Mutes audio sent to the audio device so it is not audible during | 623 // Mutes audio sent to the audio device so it is not audible during |
| 624 // automated testing. | 624 // automated testing. |
| 625 const char kMuteAudio[] = "mute-audio"; | 625 const char kMuteAudio[] = "mute-audio"; |
| 626 | 626 |
| 627 // Don't send HTTP-Referer headers. | 627 // Don't send HTTP-Referer headers. |
| 628 const char kNoReferrers[] = "no-referrers"; | 628 const char kNoReferrers[] = "no-referrers"; |
| 629 | 629 |
| 630 // Disables the sandbox for all process types that are normally sandboxed. | 630 // Disables the sandbox for all process types that are normally sandboxed. |
| 631 const char kNoSandbox[] = "no-sandbox"; | 631 const char kNoSandbox[] = "no-sandbox"; |
| 632 | 632 |
| 633 // Disables appcontainer/lowbox for renderer on Win8+ platforms. | 633 // Enables appcontainer/lowbox for renderer on Win8+ platforms. |
| 634 const char kDisableAppContainer[] = "disable-appcontainer"; | 634 const char kEnableAppContainer[] = "enable-appcontainer"; |
| 635 | 635 |
| 636 // Number of worker threads used to rasterize content. | 636 // Number of worker threads used to rasterize content. |
| 637 const char kNumRasterThreads[] = "num-raster-threads"; | 637 const char kNumRasterThreads[] = "num-raster-threads"; |
| 638 | 638 |
| 639 // Override the behavior of plugin throttling for testing. | 639 // Override the behavior of plugin throttling for testing. |
| 640 // By default the throttler is only enabled for a hard-coded list of plugins. | 640 // By default the throttler is only enabled for a hard-coded list of plugins. |
| 641 // Set the value to 'never' to disable throttling. | 641 // Set the value to 'never' to disable throttling. |
| 642 // Set the value to 'ignore-list' to ignore the hard-coded list. | 642 // Set the value to 'ignore-list' to ignore the hard-coded list. |
| 643 // Set the value to 'always' to always throttle every plugin instance. | 643 // Set the value to 'always' to always throttle every plugin instance. |
| 644 const char kOverridePluginPowerSaverForTesting[] = | 644 const char kOverridePluginPowerSaverForTesting[] = |
| (...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1011 // Windows Vista and later. | 1011 // Windows Vista and later. |
| 1012 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1012 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1013 #endif | 1013 #endif |
| 1014 | 1014 |
| 1015 // Enables the use of NPAPI plugins. | 1015 // Enables the use of NPAPI plugins. |
| 1016 const char kEnableNpapi[] = "enable-npapi"; | 1016 const char kEnableNpapi[] = "enable-npapi"; |
| 1017 | 1017 |
| 1018 // Don't dump stuff here, follow the same order as the header. | 1018 // Don't dump stuff here, follow the same order as the header. |
| 1019 | 1019 |
| 1020 } // namespace switches | 1020 } // namespace switches |
| OLD | NEW |