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

Unified Diff: third_party/WebKit/Source/core/testing/Internals.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, 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 | « third_party/WebKit/Source/core/html/HTMLMediaElement.idl ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/testing/Internals.cpp
diff --git a/third_party/WebKit/Source/core/testing/Internals.cpp b/third_party/WebKit/Source/core/testing/Internals.cpp
index 61c65d97110aed9eee14f12335f19cf89b4757ce..071c4ec26f484d0c26693d911c94bb530c838666 100644
--- a/third_party/WebKit/Source/core/testing/Internals.cpp
+++ b/third_party/WebKit/Source/core/testing/Internals.cpp
@@ -2548,8 +2548,8 @@ double Internals::monotonicTimeToZeroBasedDocumentTime(double platformTime, Exce
void Internals::setMediaElementNetworkState(HTMLMediaElement* mediaElement, int state)
{
ASSERT(mediaElement);
- ASSERT(state >= HTMLMediaElement::NetworkState::NETWORK_EMPTY);
- ASSERT(state <= HTMLMediaElement::NetworkState::NETWORK_NO_SOURCE);
+ ASSERT(state >= WebMediaPlayer::NetworkState::NetworkStateEmpty);
+ ASSERT(state <= WebMediaPlayer::NetworkState::NetworkStateDecodeError);
mediaElement->setNetworkState(static_cast<WebMediaPlayer::NetworkState>(state));
}
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLMediaElement.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698