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

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: Ensure IgnoreControlsHover flag is set effectively Created 5 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
« 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 bd04ac6ae8d41c0d3a59898d537b5670bfb522cc..44c1409d013ccc8dd289283d14e056b5d82bd894 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 {
@@ -68,6 +69,7 @@ MediaControls::MediaControls(HTMLMediaElement& mediaElement)
, m_isMouseOverControls(false)
, m_isPausedForScrubbing(false)
, m_wasLastEventTouch(false)
+ , m_behaviorFlags(0)
{
}
@@ -441,6 +443,10 @@ void MediaControls::defaultEventHandler(Event* event)
m_wasLastEventTouch = event->isTouchEvent() || event->isGestureEvent()
|| (event->isMouseEvent() && toMouseEvent(event)->fromTouch());
+ if (m_wasLastEventTouch) {
+ m_behaviorFlags |= IgnoreControlsHover;
fs 2015/02/06 10:32:36 I think I'd prefer if we could factor this slightl
+ }
+
if (event->type() == EventTypeNames::mouseover) {
if (!containsRelatedTarget(event)) {
m_isMouseOverControls = true;
@@ -477,15 +483,13 @@ void MediaControls::hideMediaControlsTimerFired(Timer<MediaControls>*)
if (mediaElement().togglePlayStateWillPlay())
return;
- unsigned behaviorFlags = IgnoreFocus | IgnoreVideoHover;
- if (m_wasLastEventTouch) {
- behaviorFlags |= IgnoreControlsHover;
- }
- if (!shouldHideMediaControls(behaviorFlags))
+ m_behaviorFlags = m_behaviorFlags | IgnoreFocus | IgnoreVideoHover;
+ if (!shouldHideMediaControls(m_behaviorFlags))
return;
makeTransparent();
m_overlayCastButton->hide();
+ m_behaviorFlags = 0;
}
void MediaControls::startHideMediaControlsTimer()
« 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