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

Unified Diff: Source/core/html/shadow/MediaControls.cpp

Issue 1153383002: Rearrange MediaControls members to match DOM structure (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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
« no previous file with comments | « Source/core/html/shadow/MediaControls.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/shadow/MediaControls.cpp
diff --git a/Source/core/html/shadow/MediaControls.cpp b/Source/core/html/shadow/MediaControls.cpp
index f17ced817083d90277be419ea059724b38984767..43d22a4cf8f2bc617013e90ffb0185038d8b74aa 100644
--- a/Source/core/html/shadow/MediaControls.cpp
+++ b/Source/core/html/shadow/MediaControls.cpp
@@ -50,20 +50,20 @@ static bool fullscreenIsSupported(const Document& document)
MediaControls::MediaControls(HTMLMediaElement& mediaElement)
: HTMLDivElement(mediaElement.document())
, m_mediaElement(&mediaElement)
- , m_panel(nullptr)
- , m_overlayPlayButton(nullptr)
, m_overlayEnclosure(nullptr)
+ , m_overlayPlayButton(nullptr)
+ , m_overlayCastButton(nullptr)
+ , m_enclosure(nullptr)
+ , m_panel(nullptr)
, m_playButton(nullptr)
- , m_currentTimeDisplay(nullptr)
, m_timeline(nullptr)
+ , m_currentTimeDisplay(nullptr)
+ , m_durationDisplay(nullptr)
, m_muteButton(nullptr)
, m_volumeSlider(nullptr)
, m_toggleClosedCaptionsButton(nullptr)
- , m_fullScreenButton(nullptr)
, m_castButton(nullptr)
- , m_overlayCastButton(nullptr)
- , m_durationDisplay(nullptr)
- , m_enclosure(nullptr)
+ , m_fullScreenButton(nullptr)
, m_hideMediaControlsTimer(this, &MediaControls::hideMediaControlsTimerFired)
, m_hideTimerBehaviorFlags(IgnoreNone)
, m_isMouseOverControls(false)
« no previous file with comments | « Source/core/html/shadow/MediaControls.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698