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

Unified Diff: third_party/WebKit/Source/core/html/HTMLVideoElementTest.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/HTMLVideoElementTest.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp b/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
index b5ed951b2b0bdc21186ab55d21f0b55d24aa320f..dd83c36af0346c3986fa0f86e63df435ff41ebb8 100644
--- a/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLVideoElementTest.cpp
@@ -104,7 +104,7 @@ TEST_F(HTMLVideoElementTest, setBufferingStrategy_NonUserPause)
// On play, the strategy is set to normal.
EXPECT_CALL(*player, setBufferingStrategy(WebMediaPlayer::BufferingStrategy::Normal));
- m_video->play();
+ m_video->playInternal();
::testing::Mock::VerifyAndClearExpectations(player);
// On a non-user pause, the strategy is not changed.
@@ -113,7 +113,7 @@ TEST_F(HTMLVideoElementTest, setBufferingStrategy_NonUserPause)
// On play, the strategy is set to normal.
EXPECT_CALL(*player, setBufferingStrategy(WebMediaPlayer::BufferingStrategy::Normal));
- m_video->play();
+ m_video->playInternal();
::testing::Mock::VerifyAndClearExpectations(player);
}
@@ -125,7 +125,7 @@ TEST_F(HTMLVideoElementTest, setBufferingStrategy_UserPause)
// On play, the strategy is set to normal.
EXPECT_CALL(*player, setBufferingStrategy(WebMediaPlayer::BufferingStrategy::Normal));
- m_video->play();
+ m_video->playInternal();
::testing::Mock::VerifyAndClearExpectations(player);
// On a user pause, the strategy is set to aggressive.
@@ -138,7 +138,7 @@ TEST_F(HTMLVideoElementTest, setBufferingStrategy_UserPause)
// On play, the strategy is set to normal.
EXPECT_CALL(*player, setBufferingStrategy(WebMediaPlayer::BufferingStrategy::Normal));
- m_video->play();
+ m_video->playInternal();
::testing::Mock::VerifyAndClearExpectations(player);
}

Powered by Google App Engine
This is Rietveld 408576698