Index: content/renderer/media/android/stream_texture_factory_impl.cc |
diff --git a/content/renderer/media/android/stream_texture_factory_impl.cc b/content/renderer/media/android/stream_texture_factory_impl.cc |
index e6d6f40909172d7f2e581efce06148e3faddafc4..81de90af4b3a45ba7340ee02ce347026f067a484 100644 |
--- a/content/renderer/media/android/stream_texture_factory_impl.cc |
+++ b/content/renderer/media/android/stream_texture_factory_impl.cc |
@@ -7,9 +7,9 @@ |
#include "base/macros.h" |
#include "cc/output/context_provider.h" |
#include "content/common/gpu/client/context_provider_command_buffer.h" |
-#include "content/common/gpu/client/gpu_channel_host.h" |
#include "content/renderer/gpu/stream_texture_host_android.h" |
#include "gpu/command_buffer/client/gles2_interface.h" |
+#include "gpu/ipc/client/gpu_channel_host.h" |
#include "gpu/ipc/common/gpu_messages.h" |
#include "ui/gfx/geometry/size.h" |
@@ -106,13 +106,13 @@ void StreamTextureProxyImpl::OnFrameAvailable() { |
// static |
scoped_refptr<StreamTextureFactoryImpl> StreamTextureFactoryImpl::Create( |
const scoped_refptr<ContextProviderCommandBuffer>& context_provider, |
- GpuChannelHost* channel) { |
+ gpu::GpuChannelHost* channel) { |
return new StreamTextureFactoryImpl(context_provider, channel); |
} |
StreamTextureFactoryImpl::StreamTextureFactoryImpl( |
const scoped_refptr<ContextProviderCommandBuffer>& context_provider, |
- GpuChannelHost* channel) |
+ gpu::GpuChannelHost* channel) |
: context_provider_(context_provider), channel_(channel) { |
DCHECK(channel); |
} |