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 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 // cookies on cross-site requests. | 477 // cookies on cross-site requests. |
478 const char kEnableStrictSiteIsolation[] = "enable-strict-site-isolation"; | 478 const char kEnableStrictSiteIsolation[] = "enable-strict-site-isolation"; |
479 | 479 |
480 // Enable support for sync events in ServiceWorkers. | 480 // Enable support for sync events in ServiceWorkers. |
481 const char kEnableServiceWorkerSync[] = "enable-service-worker-sync"; | 481 const char kEnableServiceWorkerSync[] = "enable-service-worker-sync"; |
482 | 482 |
483 // Enable use of experimental TCP sockets API for sending data in the | 483 // Enable use of experimental TCP sockets API for sending data in the |
484 // SYN packet. | 484 // SYN packet. |
485 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; | 485 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; |
486 | 486 |
487 // Enable multithreaded GPU compositing of web content. | 487 // Enabled threaded compositing for layout tests. |
488 const char kEnableThreadedCompositing[] = "enable-threaded-compositing"; | 488 const char kEnableThreadedCompositing[] = "enable-threaded-compositing"; |
489 | 489 |
490 // Enable screen capturing support for MediaStream API. | 490 // Enable screen capturing support for MediaStream API. |
491 const char kEnableUserMediaScreenCapturing[] = | 491 const char kEnableUserMediaScreenCapturing[] = |
492 "enable-usermedia-screen-capturing"; | 492 "enable-usermedia-screen-capturing"; |
493 | 493 |
494 // Enables the use of the @viewport CSS rule, which allows | 494 // Enables the use of the @viewport CSS rule, which allows |
495 // pages to control aspects of their own layout. This also turns on touch-screen | 495 // pages to control aspects of their own layout. This also turns on touch-screen |
496 // pinch gestures. | 496 // pinch gestures. |
497 const char kEnableViewport[] = "enable-viewport"; | 497 const char kEnableViewport[] = "enable-viewport"; |
498 | 498 |
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
953 // Enable the Win32K process mitigation policy for renderer processes which | 953 // Enable the Win32K process mitigation policy for renderer processes which |
954 // prevents them from invoking user32 and gdi32 system calls which enter | 954 // prevents them from invoking user32 and gdi32 system calls which enter |
955 // the kernel. This is only supported on Windows 8 and beyond. | 955 // the kernel. This is only supported on Windows 8 and beyond. |
956 const char kEnableWin32kRendererLockDown[] | 956 const char kEnableWin32kRendererLockDown[] |
957 = "enable_win32k_renderer_lockdown"; | 957 = "enable_win32k_renderer_lockdown"; |
958 #endif | 958 #endif |
959 | 959 |
960 // Don't dump stuff here, follow the same order as the header. | 960 // Don't dump stuff here, follow the same order as the header. |
961 | 961 |
962 } // namespace switches | 962 } // namespace switches |
OLD | NEW |