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

Unified Diff: content/renderer/media/texttrack_impl.cc

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | « content/renderer/media/texttrack_impl.h ('k') | content/renderer/media/video_destination_handler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/texttrack_impl.cc
diff --git a/content/renderer/media/texttrack_impl.cc b/content/renderer/media/texttrack_impl.cc
index 7acf39a1a488039c5748bfa031ec9e7ece5a83da..8e30594b1e22ce2284dda5f62be0625b0455f5f9 100644
--- a/content/renderer/media/texttrack_impl.cc
+++ b/content/renderer/media/texttrack_impl.cc
@@ -10,7 +10,7 @@
namespace content {
-TextTrackImpl::TextTrackImpl(WebKit::WebMediaPlayerClient* client,
+TextTrackImpl::TextTrackImpl(blink::WebMediaPlayerClient* client,
WebInbandTextTrackImpl* text_track)
: client_(client), text_track_(text_track) {
client_->addTextTrack(text_track_.get());
@@ -26,12 +26,12 @@ void TextTrackImpl::addWebVTTCue(const base::TimeDelta& start,
const std::string& id,
const std::string& content,
const std::string& settings) {
- if (WebKit::WebInbandTextTrackClient* client = text_track_->client())
+ if (blink::WebInbandTextTrackClient* client = text_track_->client())
client->addWebVTTCue(start.InSecondsF(),
end.InSecondsF(),
- WebKit::WebString::fromUTF8(id),
- WebKit::WebString::fromUTF8(content),
- WebKit::WebString::fromUTF8(settings));
+ blink::WebString::fromUTF8(id),
+ blink::WebString::fromUTF8(content),
+ blink::WebString::fromUTF8(settings));
}
} // namespace content
« no previous file with comments | « content/renderer/media/texttrack_impl.h ('k') | content/renderer/media/video_destination_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698