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

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

Issue 892963003: Ensure media control goes to transparent(hide) after seek by touch (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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/MediaControlElements.cpp ('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 bd04ac6ae8d41c0d3a59898d537b5670bfb522cc..aacd2e9c0cd8cd8d1005b5f3892f70e028ff5f6e 100644
--- a/Source/core/html/shadow/MediaControls.cpp
+++ b/Source/core/html/shadow/MediaControls.cpp
@@ -34,6 +34,7 @@
#include "core/html/HTMLMediaElement.h"
#include "core/html/MediaController.h"
#include "core/layout/LayoutTheme.h"
+#include "core/page/EventHandler.h"
namespace blink {
@@ -239,6 +240,11 @@ bool MediaControls::shouldHideMediaControls(unsigned behaviorFlags) const
// Never hide for a media element without visual representation.
if (!mediaElement().hasVideo() || mediaElement().isPlayingRemotely())
return false;
+
+ // Update hover status before check it
+ if (document().frame())
+ document().frame()->eventHandler().scheduleHoverStateUpdate();
fs 2015/02/02 13:13:46 All this does is to start a timer, so this doesn't
william.xie1 2015/02/02 14:29:18 Hi fs, yes, here it schedule a time for hover stat
+
// Don't hide if the mouse is over the controls.
const bool ignoreControlsHover = behaviorFlags & IgnoreControlsHover;
if (!ignoreControlsHover && m_panel->hovered())
@@ -273,7 +279,7 @@ void MediaControls::playbackProgressed()
m_timeline->setPosition(mediaElement().currentTime());
updateCurrentTimeDisplay();
- if (shouldHideMediaControls())
+ if (m_panel->isOpaque() && shouldHideMediaControls())
fs 2015/02/02 13:13:46 makeTransparent already checks this, so this just
william.xie1 2015/02/02 14:29:18 Yes, correct, to avoid schedule the hover state up
makeTransparent();
}
« no previous file with comments | « Source/core/html/shadow/MediaControlElements.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698