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

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

Issue 597523003: Remove the legacy fullscreen video path in Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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
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 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 370
371 // Enables the network information API. 371 // Enables the network information API.
372 const char kEnableNetworkInformation[] = "enable-network-information"; 372 const char kEnableNetworkInformation[] = "enable-network-information";
373 373
374 // Enable rasterizer that writes directly to GPU memory. 374 // Enable rasterizer that writes directly to GPU memory.
375 const char kEnableOneCopy[] = "enable-one-copy"; 375 const char kEnableOneCopy[] = "enable-one-copy";
376 376
377 // Enables use of hardware overlay for fullscreen video playback. Android only. 377 // Enables use of hardware overlay for fullscreen video playback. Android only.
378 const char kEnableOverlayFullscreenVideo[] = "enable-overlay-fullscreen-video"; 378 const char kEnableOverlayFullscreenVideo[] = "enable-overlay-fullscreen-video";
379 379
380 // Disables blink subtitle and media control on top of overlay fullscreen video.
381 const char kDisableOverlayFullscreenVideoSubtitle[] =
382 "disable-overlay-fullscreen-video-subtitle";
383
384 // Forward overscroll event data from the renderer to the browser. 380 // Forward overscroll event data from the renderer to the browser.
385 const char kEnableOverscrollNotifications[] = "enable-overscroll-notifications"; 381 const char kEnableOverscrollNotifications[] = "enable-overscroll-notifications";
386 382
387 // Enables compositor-accelerated touch-screen pinch gestures. 383 // Enables compositor-accelerated touch-screen pinch gestures.
388 const char kEnablePinch[] = "enable-pinch"; 384 const char kEnablePinch[] = "enable-pinch";
389 385
390 // Make the values returned to window.performance.memory more granular and more 386 // Make the values returned to window.performance.memory more granular and more
391 // up to date in shared worker. Without this flag, the memory information is 387 // up to date in shared worker. Without this flag, the memory information is
392 // still available, but it is bucketized and updated less frequently. This flag 388 // still available, but it is bucketized and updated less frequently. This flag
393 // also applys to workers. 389 // also applys to workers.
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after
942 // Enable the Win32K process mitigation policy for renderer processes which 938 // Enable the Win32K process mitigation policy for renderer processes which
943 // prevents them from invoking user32 and gdi32 system calls which enter 939 // prevents them from invoking user32 and gdi32 system calls which enter
944 // the kernel. This is only supported on Windows 8 and beyond. 940 // the kernel. This is only supported on Windows 8 and beyond.
945 const char kEnableWin32kRendererLockDown[] 941 const char kEnableWin32kRendererLockDown[]
946 = "enable_win32k_renderer_lockdown"; 942 = "enable_win32k_renderer_lockdown";
947 #endif 943 #endif
948 944
949 // Don't dump stuff here, follow the same order as the header. 945 // Don't dump stuff here, follow the same order as the header.
950 946
951 } // namespace switches 947 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698