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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 // https://github.com/slightlyoff/ServiceWorker for more information. | 491 // https://github.com/slightlyoff/ServiceWorker for more information. |
492 const char kEnableServiceWorker[] = "enable-service-worker"; | 492 const char kEnableServiceWorker[] = "enable-service-worker"; |
493 | 493 |
494 // Enable support for sync events in ServiceWorkers. | 494 // Enable support for sync events in ServiceWorkers. |
495 const char kEnableServiceWorkerSync[] = "enable-service-worker-sync"; | 495 const char kEnableServiceWorkerSync[] = "enable-service-worker-sync"; |
496 | 496 |
497 // Enable use of experimental TCP sockets API for sending data in the | 497 // Enable use of experimental TCP sockets API for sending data in the |
498 // SYN packet. | 498 // SYN packet. |
499 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; | 499 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; |
500 | 500 |
| 501 // Enable multithreaded GPU compositing of web content. |
| 502 const char kEnableThreadedCompositing[] = "enable-threaded-compositing"; |
| 503 |
501 // Enable screen capturing support for MediaStream API. | 504 // Enable screen capturing support for MediaStream API. |
502 const char kEnableUserMediaScreenCapturing[] = | 505 const char kEnableUserMediaScreenCapturing[] = |
503 "enable-usermedia-screen-capturing"; | 506 "enable-usermedia-screen-capturing"; |
504 | 507 |
505 // Enables the use of the @viewport CSS rule, which allows | 508 // Enables the use of the @viewport CSS rule, which allows |
506 // pages to control aspects of their own layout. This also turns on touch-screen | 509 // pages to control aspects of their own layout. This also turns on touch-screen |
507 // pinch gestures. | 510 // pinch gestures. |
508 const char kEnableViewport[] = "enable-viewport"; | 511 const char kEnableViewport[] = "enable-viewport"; |
509 | 512 |
510 // Enables the use of the legacy viewport meta tag. Turning this on also | 513 // Enables the use of the legacy viewport meta tag. Turning this on also |
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
960 // Enable the Win32K process mitigation policy for renderer processes which | 963 // Enable the Win32K process mitigation policy for renderer processes which |
961 // prevents them from invoking user32 and gdi32 system calls which enter | 964 // prevents them from invoking user32 and gdi32 system calls which enter |
962 // the kernel. This is only supported on Windows 8 and beyond. | 965 // the kernel. This is only supported on Windows 8 and beyond. |
963 const char kEnableWin32kRendererLockDown[] | 966 const char kEnableWin32kRendererLockDown[] |
964 = "enable_win32k_renderer_lockdown"; | 967 = "enable_win32k_renderer_lockdown"; |
965 #endif | 968 #endif |
966 | 969 |
967 // Don't dump stuff here, follow the same order as the header. | 970 // Don't dump stuff here, follow the same order as the header. |
968 | 971 |
969 } // namespace switches | 972 } // namespace switches |
OLD | NEW |