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 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
492 // This does NOT enable color management for images. The source is still | 492 // This does NOT enable color management for images. The source is still |
493 // assumed to be sRGB. | 493 // assumed to be sRGB. |
494 const char kEnableMonitorProfile[] = "enable-monitor-profile"; | 494 const char kEnableMonitorProfile[] = "enable-monitor-profile"; |
495 | 495 |
496 // Enables use of cache if offline, even if it's stale | 496 // Enables use of cache if offline, even if it's stale |
497 const char kEnableOfflineCacheAccess[] = "enable-offline-cache-access"; | 497 const char kEnableOfflineCacheAccess[] = "enable-offline-cache-access"; |
498 | 498 |
499 // Enables use of hardware overlay for fullscreen video playback. Android only. | 499 // Enables use of hardware overlay for fullscreen video playback. Android only. |
500 const char kEnableOverlayFullscreenVideo[] = "enable-overlay-fullscreen-video"; | 500 const char kEnableOverlayFullscreenVideo[] = "enable-overlay-fullscreen-video"; |
501 | 501 |
| 502 // Enables blink subtitle and media control on top of overlay full screen video. |
| 503 const char kEnableOverlayFullscreenVideoSubtitle[] = |
| 504 "enable-overlay-fullscreen-video-subtitle"; |
| 505 |
502 // Enables overlay scrollbars on Aura or Linux. Does nothing on Mac. | 506 // Enables overlay scrollbars on Aura or Linux. Does nothing on Mac. |
503 const char kEnableOverlayScrollbars[] = "enable-overlay-scrollbars"; | 507 const char kEnableOverlayScrollbars[] = "enable-overlay-scrollbars"; |
504 | 508 |
505 // Forward overscroll event data from the renderer to the browser. | 509 // Forward overscroll event data from the renderer to the browser. |
506 const char kEnableOverscrollNotifications[] = "enable-overscroll-notifications"; | 510 const char kEnableOverscrollNotifications[] = "enable-overscroll-notifications"; |
507 | 511 |
508 // Enables compositor-accelerated touch-screen pinch gestures. | 512 // Enables compositor-accelerated touch-screen pinch gestures. |
509 const char kEnablePinch[] = "enable-pinch"; | 513 const char kEnablePinch[] = "enable-pinch"; |
510 | 514 |
511 // Enable caching of pre-parsed JS script data. See http://crbug.com/32407. | 515 // Enable caching of pre-parsed JS script data. See http://crbug.com/32407. |
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1052 #endif | 1056 #endif |
1053 | 1057 |
1054 #if defined(OS_POSIX) | 1058 #if defined(OS_POSIX) |
1055 // Causes the child processes to cleanly exit via calling exit(). | 1059 // Causes the child processes to cleanly exit via calling exit(). |
1056 const char kChildCleanExit[] = "child-clean-exit"; | 1060 const char kChildCleanExit[] = "child-clean-exit"; |
1057 #endif | 1061 #endif |
1058 | 1062 |
1059 // Don't dump stuff here, follow the same order as the header. | 1063 // Don't dump stuff here, follow the same order as the header. |
1060 | 1064 |
1061 } // namespace switches | 1065 } // namespace switches |
OLD | NEW |