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

Unified Diff: Source/web/WebMediaPlayerClientImpl.cpp

Issue 92763002: Rename addTrack and removeTrack functions to addTextTrack and removeTextTrack. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased to apply cleanly Created 6 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
« no previous file with comments | « Source/platform/graphics/media/MediaPlayer.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebMediaPlayerClientImpl.cpp
diff --git a/Source/web/WebMediaPlayerClientImpl.cpp b/Source/web/WebMediaPlayerClientImpl.cpp
index da73a86701218ecfdfff54ac1cb24ac51628bb24..95963ba6cef2c5b8472c9a14219eb5a76c62a0e8 100644
--- a/Source/web/WebMediaPlayerClientImpl.cpp
+++ b/Source/web/WebMediaPlayerClientImpl.cpp
@@ -176,14 +176,14 @@ void WebMediaPlayerClientImpl::setWebLayer(blink::WebLayer* layer)
m_client->mediaPlayerSetWebLayer(layer);
}
-void WebMediaPlayerClientImpl::addTextTrack(WebInbandTextTrack* textTrack)
+void WebMediaPlayerClientImpl::addTextTrack(WebInbandTextTrack* track)
{
- m_client->mediaPlayerDidAddTrack(textTrack);
+ m_client->mediaPlayerDidAddTextTrack(track);
}
-void WebMediaPlayerClientImpl::removeTextTrack(WebInbandTextTrack* textTrack)
+void WebMediaPlayerClientImpl::removeTextTrack(WebInbandTextTrack* track)
{
- m_client->mediaPlayerDidRemoveTrack(textTrack);
+ m_client->mediaPlayerDidRemoveTextTrack(track);
}
void WebMediaPlayerClientImpl::mediaSourceOpened(WebMediaSource* webMediaSource)
« no previous file with comments | « Source/platform/graphics/media/MediaPlayer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698