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