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

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

Issue 1576283003: Have HTMLMediaElement::play() return a Promise. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: third_party/WebKit/Source/core/html/shadow/MediaControls.cpp
diff --git a/third_party/WebKit/Source/core/html/shadow/MediaControls.cpp b/third_party/WebKit/Source/core/html/shadow/MediaControls.cpp
index e78e237e5fd378fe3dd1430bdd455906ad4f9cad..26ec49c39eb2416279ba5dae28bdc1399bcf610a 100644
--- a/third_party/WebKit/Source/core/html/shadow/MediaControls.cpp
+++ b/third_party/WebKit/Source/core/html/shadow/MediaControls.cpp
@@ -383,11 +383,12 @@ void MediaControls::beginScrubbing()
void MediaControls::endScrubbing()
{
- if (m_isPausedForScrubbing) {
- m_isPausedForScrubbing = false;
- if (mediaElement().paused())
- mediaElement().play();
- }
+ if (!m_isPausedForScrubbing)
+ return;
+
+ m_isPausedForScrubbing = false;
+ if (mediaElement().paused())
+ mediaElement().playInternal();
philipj_slow 2016/02/02 09:56:33 Hmm, this case need not require a user gesture, bu
mlamouri (slow - plz ping) 2016/02/03 19:28:58 Fixed.
}
void MediaControls::updateCurrentTimeDisplay()

Powered by Google App Engine
This is Rietveld 408576698