| 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 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 499 // https://github.com/slightlyoff/ServiceWorker for more information. | 499 // https://github.com/slightlyoff/ServiceWorker for more information. |
| 500 const char kEnableServiceWorker[] = "enable-service-worker"; | 500 const char kEnableServiceWorker[] = "enable-service-worker"; |
| 501 | 501 |
| 502 // Enable support for sync events in ServiceWorkers. | 502 // Enable support for sync events in ServiceWorkers. |
| 503 const char kEnableServiceWorkerSync[] = "enable-service-worker-sync"; | 503 const char kEnableServiceWorkerSync[] = "enable-service-worker-sync"; |
| 504 | 504 |
| 505 // Enable use of experimental TCP sockets API for sending data in the | 505 // Enable use of experimental TCP sockets API for sending data in the |
| 506 // SYN packet. | 506 // SYN packet. |
| 507 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; | 507 const char kEnableTcpFastOpen[] = "enable-tcp-fastopen"; |
| 508 | 508 |
| 509 // Enable multithreaded GPU compositing of web content. | |
| 510 const char kEnableThreadedCompositing[] = "enable-threaded-compositing"; | |
| 511 | |
| 512 // Enable accelerated overflow scrolling in all cases. | 509 // Enable accelerated overflow scrolling in all cases. |
| 513 const char kEnableUniversalAcceleratedOverflowScroll[] = | 510 const char kEnableUniversalAcceleratedOverflowScroll[] = |
| 514 "enable-universal-accelerated-overflow-scroll"; | 511 "enable-universal-accelerated-overflow-scroll"; |
| 515 | 512 |
| 516 // Enable screen capturing support for MediaStream API. | 513 // Enable screen capturing support for MediaStream API. |
| 517 const char kEnableUserMediaScreenCapturing[] = | 514 const char kEnableUserMediaScreenCapturing[] = |
| 518 "enable-usermedia-screen-capturing"; | 515 "enable-usermedia-screen-capturing"; |
| 519 | 516 |
| 520 // Enables the use of the @viewport CSS rule, which allows | 517 // Enables the use of the @viewport CSS rule, which allows |
| 521 // pages to control aspects of their own layout. This also turns on touch-screen | 518 // pages to control aspects of their own layout. This also turns on touch-screen |
| (...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 975 // Enable the Win32K process mitigation policy for renderer processes which | 972 // Enable the Win32K process mitigation policy for renderer processes which |
| 976 // prevents them from invoking user32 and gdi32 system calls which enter | 973 // prevents them from invoking user32 and gdi32 system calls which enter |
| 977 // the kernel. This is only supported on Windows 8 and beyond. | 974 // the kernel. This is only supported on Windows 8 and beyond. |
| 978 const char kEnableWin32kRendererLockDown[] | 975 const char kEnableWin32kRendererLockDown[] |
| 979 = "enable_win32k_renderer_lockdown"; | 976 = "enable_win32k_renderer_lockdown"; |
| 980 #endif | 977 #endif |
| 981 | 978 |
| 982 // Don't dump stuff here, follow the same order as the header. | 979 // Don't dump stuff here, follow the same order as the header. |
| 983 | 980 |
| 984 } // namespace switches | 981 } // namespace switches |
| OLD | NEW |