Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(28)

Side by Side Diff: content/public/common/content_switches.cc

Issue 182493003: enable subtitle support and the new fullscreen video (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: don't enable fullscreen subtitle for webview Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
477 // This does NOT enable color management for images. The source is still 477 // This does NOT enable color management for images. The source is still
478 // assumed to be sRGB. 478 // assumed to be sRGB.
479 const char kEnableMonitorProfile[] = "enable-monitor-profile"; 479 const char kEnableMonitorProfile[] = "enable-monitor-profile";
480 480
481 // Enables use of cache if offline, even if it's stale 481 // Enables use of cache if offline, even if it's stale
482 const char kEnableOfflineCacheAccess[] = "enable-offline-cache-access"; 482 const char kEnableOfflineCacheAccess[] = "enable-offline-cache-access";
483 483
484 // Enables use of hardware overlay for fullscreen video playback. Android only. 484 // Enables use of hardware overlay for fullscreen video playback. Android only.
485 const char kEnableOverlayFullscreenVideo[] = "enable-overlay-fullscreen-video"; 485 const char kEnableOverlayFullscreenVideo[] = "enable-overlay-fullscreen-video";
486 486
487 // Enables blink subtitle and media control on top of overlay full screen video. 487 // Disables blink subtitle and media control on top of overlay fullscreen video.
488 const char kEnableOverlayFullscreenVideoSubtitle[] = 488 const char kDisableOverlayFullscreenVideoSubtitle[] =
489 "enable-overlay-fullscreen-video-subtitle"; 489 "disable-overlay-fullscreen-video-subtitle";
490 490
491 // Enables overlay scrollbars on Aura or Linux. Does nothing on Mac. 491 // Enables overlay scrollbars on Aura or Linux. Does nothing on Mac.
492 const char kEnableOverlayScrollbar[] = "enable-overlay-scrollbar"; 492 const char kEnableOverlayScrollbar[] = "enable-overlay-scrollbar";
493 493
494 // Forward overscroll event data from the renderer to the browser. 494 // Forward overscroll event data from the renderer to the browser.
495 const char kEnableOverscrollNotifications[] = "enable-overscroll-notifications"; 495 const char kEnableOverscrollNotifications[] = "enable-overscroll-notifications";
496 496
497 // Enables compositor-accelerated touch-screen pinch gestures. 497 // Enables compositor-accelerated touch-screen pinch gestures.
498 const char kEnablePinch[] = "enable-pinch"; 498 const char kEnablePinch[] = "enable-pinch";
499 499
(...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after
1052 #endif 1052 #endif
1053 1053
1054 #if defined(OS_POSIX) 1054 #if defined(OS_POSIX)
1055 // Causes the child processes to cleanly exit via calling exit(). 1055 // Causes the child processes to cleanly exit via calling exit().
1056 const char kChildCleanExit[] = "child-clean-exit"; 1056 const char kChildCleanExit[] = "child-clean-exit";
1057 #endif 1057 #endif
1058 1058
1059 // 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.
1060 1060
1061 } // namespace switches 1061 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698