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

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

Issue 17502007: Move webkit/renderer/media/android/ to content/renderer/media/android/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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: content/renderer/media/stream_texture_factory_impl_android.cc
diff --git a/content/renderer/media/stream_texture_factory_impl_android.cc b/content/renderer/media/stream_texture_factory_impl_android.cc
index b33c9246628f5f071fc8a06a2a36acce8b6c7220..cb2408ba16b1125b8bf42537845b9f3d115dc322 100644
--- a/content/renderer/media/stream_texture_factory_impl_android.cc
+++ b/content/renderer/media/stream_texture_factory_impl_android.cc
@@ -20,7 +20,7 @@ namespace {
// Implementation of the StreamTextureProxy class. This class listens to all
// the stream texture updates and forward them to the
// cc::VideoFrameProvider::Client.
-class StreamTextureProxyImpl : public webkit_media::StreamTextureProxy,
+class StreamTextureProxyImpl : public content::StreamTextureProxy,
qinmin 2013/06/21 04:37:05 see my earlier comments, we can just rename this t
scherkus (not reviewing) 2013/06/21 21:37:59 I was going to defer that to another CL but I real
public content::StreamTextureHost::Listener {
public:
explicit StreamTextureProxyImpl(content::StreamTextureHost* host);
@@ -104,7 +104,7 @@ StreamTextureFactoryImpl::StreamTextureFactoryImpl(
StreamTextureFactoryImpl::~StreamTextureFactoryImpl() {
}
-webkit_media::StreamTextureProxy* StreamTextureFactoryImpl::CreateProxy() {
+StreamTextureProxy* StreamTextureFactoryImpl::CreateProxy() {
DCHECK(channel_.get());
StreamTextureHost* host = new StreamTextureHost(channel_.get());
return new StreamTextureProxyImpl(host);

Powered by Google App Engine
This is Rietveld 408576698