| 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 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 622 // Mutes audio sent to the audio device so it is not audible during | 622 // Mutes audio sent to the audio device so it is not audible during |
| 623 // automated testing. | 623 // automated testing. |
| 624 const char kMuteAudio[] = "mute-audio"; | 624 const char kMuteAudio[] = "mute-audio"; |
| 625 | 625 |
| 626 // Don't send HTTP-Referer headers. | 626 // Don't send HTTP-Referer headers. |
| 627 const char kNoReferrers[] = "no-referrers"; | 627 const char kNoReferrers[] = "no-referrers"; |
| 628 | 628 |
| 629 // Disables the sandbox for all process types that are normally sandboxed. | 629 // Disables the sandbox for all process types that are normally sandboxed. |
| 630 const char kNoSandbox[] = "no-sandbox"; | 630 const char kNoSandbox[] = "no-sandbox"; |
| 631 | 631 |
| 632 // Disables appcontainer/lowbox for renderer on Win8+ platforms. |
| 633 const char kDisableAppContainer[] = "disable-appcontainer"; |
| 634 |
| 632 // Number of worker threads used to rasterize content. | 635 // Number of worker threads used to rasterize content. |
| 633 const char kNumRasterThreads[] = "num-raster-threads"; | 636 const char kNumRasterThreads[] = "num-raster-threads"; |
| 634 | 637 |
| 635 // Controls the behavior of history navigation in response to horizontal | 638 // Controls the behavior of history navigation in response to horizontal |
| 636 // overscroll. | 639 // overscroll. |
| 637 // Set the value to '0' to disable. | 640 // Set the value to '0' to disable. |
| 638 // Set the value to '1' to enable the behavior where pages slide in and out in | 641 // Set the value to '1' to enable the behavior where pages slide in and out in |
| 639 // response to the horizontal overscroll gesture and a screenshot of the target | 642 // response to the horizontal overscroll gesture and a screenshot of the target |
| 640 // page is shown. | 643 // page is shown. |
| 641 // Set the value to '2' to enable the simplified overscroll UI where a | 644 // Set the value to '2' to enable the simplified overscroll UI where a |
| (...skipping 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 991 // Windows Vista and later. | 994 // Windows Vista and later. |
| 992 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 995 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 993 #endif | 996 #endif |
| 994 | 997 |
| 995 // Enables the use of NPAPI plugins. | 998 // Enables the use of NPAPI plugins. |
| 996 const char kEnableNpapi[] = "enable-npapi"; | 999 const char kEnableNpapi[] = "enable-npapi"; |
| 997 | 1000 |
| 998 // Don't dump stuff here, follow the same order as the header. | 1001 // Don't dump stuff here, follow the same order as the header. |
| 999 | 1002 |
| 1000 } // namespace switches | 1003 } // namespace switches |
| OLD | NEW |