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

Unified Diff: third_party/WebKit/Source/core/html/HTMLVideoElement.h

Issue 2696893002: [Blink>Media] Add heuristic for dominant video detection for Android (Closed)
Patch Set: nits Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/HTMLVideoElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLVideoElement.h b/third_party/WebKit/Source/core/html/HTMLVideoElement.h
index 519530cd7cb8184b71ae0296b74e05c2bd96d3bc..4eddefd226ffaead1c0539a04a09da98bcc9c9c4 100644
--- a/third_party/WebKit/Source/core/html/HTMLVideoElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLVideoElement.h
@@ -42,6 +42,7 @@ class GLES2Interface;
namespace blink {
class ExceptionState;
class ImageBitmapOptions;
+class MediaCustomControlsFullscreenDetector;
class CORE_EXPORT HTMLVideoElement final : public HTMLMediaElement,
public CanvasImageSource,
@@ -121,6 +122,8 @@ class CORE_EXPORT HTMLVideoElement final : public HTMLMediaElement,
ExceptionState&) override;
private:
+ friend class MediaCustomControlsFullscreenDetectorTest;
+
HTMLVideoElement(Document&);
bool layoutObjectIsNeeded(const ComputedStyle&) override;
@@ -139,6 +142,8 @@ class CORE_EXPORT HTMLVideoElement final : public HTMLMediaElement,
void setDisplayMode(DisplayMode) override;
Member<HTMLImageLoader> m_imageLoader;
+ Member<MediaCustomControlsFullscreenDetector>
+ m_customControlsFullscreenDetector;
AtomicString m_defaultPosterURL;
};
« no previous file with comments | « third_party/WebKit/Source/core/html/BUILD.gn ('k') | third_party/WebKit/Source/core/html/HTMLVideoElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698