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

Unified Diff: Source/core/testing/Internals.cpp

Issue 1055503002: Eliminate MediaPlayer & MediaPlayerClient abstractions (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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: Source/core/testing/Internals.cpp
diff --git a/Source/core/testing/Internals.cpp b/Source/core/testing/Internals.cpp
index f0c308a4aa384e11cbd4b007701a7e48980ceb96..5c938233d25f14cba2a951f3bb4c1d035a5ba287 100644
--- a/Source/core/testing/Internals.cpp
+++ b/Source/core/testing/Internals.cpp
@@ -1702,7 +1702,7 @@ void Internals::setIsCursorVisible(Document* document, bool isVisible, Exception
void Internals::mediaPlayerRequestFullscreen(HTMLMediaElement* mediaElement)
{
ASSERT(mediaElement);
- mediaElement->mediaPlayerRequestFullscreen();
+ mediaElement->requestFullscreen();
philipj_slow 2015/04/14 08:42:54 What is this change for? Does LayoutTests/media/me
Srirama 2015/04/14 12:09:28 This is just renaming of the API (mediaPlayerReque
}
double Internals::effectiveMediaVolume(HTMLMediaElement* mediaElement)

Powered by Google App Engine
This is Rietveld 408576698