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

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

Issue 2588823002: Media Controls: change how the MediaControls object is created and handled. (Closed)
Patch Set: Created 4 years 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/HTMLMediaElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLMediaElement.h b/third_party/WebKit/Source/core/html/HTMLMediaElement.h
index 0ecace5d34fdb9a441537662c0cf2383bbb85744..3d819c79d1b00d82a37e4023f83332c0f415c3a9 100644
--- a/third_party/WebKit/Source/core/html/HTMLMediaElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLMediaElement.h
@@ -400,7 +400,6 @@ class CORE_EXPORT HTMLMediaElement
bool isAutoplayingMuted() final;
void requestReload(const WebURL&) final;
void activateViewportIntersectionMonitoring(bool) final;
-
void loadTimerFired(TimerBase*);
void progressEventTimerFired(TimerBase*);
void playbackProgressTimerFired(TimerBase*);
@@ -483,7 +482,7 @@ class CORE_EXPORT HTMLMediaElement
void requireOfficialPlaybackPositionUpdate() const;
void ensureMediaControls();
- void configureMediaControls();
+ void updateControlsVisibility();
TextTrackContainer& ensureTextTrackContainer();
@@ -746,6 +745,8 @@ class CORE_EXPORT HTMLMediaElement
IntRect m_currentIntersectRect;
+ Member<MediaControls> m_mediaControls;
+
static URLRegistry* s_mediaStreamRegistry;
};

Powered by Google App Engine
This is Rietveld 408576698