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

Unified Diff: content/renderer/media/android/stream_texture_factory_impl.h

Issue 1827123002: Move content/common/gpu/client to gpu/ipc/client (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update Created 4 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: content/renderer/media/android/stream_texture_factory_impl.h
diff --git a/content/renderer/media/android/stream_texture_factory_impl.h b/content/renderer/media/android/stream_texture_factory_impl.h
index 648f70fbcedac0b01f9311d94cd6631fc3b900a3..e07122d123767343840fe58c754ba220c885faa2 100644
--- a/content/renderer/media/android/stream_texture_factory_impl.h
+++ b/content/renderer/media/android/stream_texture_factory_impl.h
@@ -18,18 +18,18 @@ namespace gpu {
namespace gles2 {
class GLES2Interface;
} // namespace gles2
+class GpuChannelHost;
} // namespace gpu
namespace content {
class ContextProviderCommandBuffer;
-class GpuChannelHost;
class StreamTextureFactoryImpl : public StreamTextureFactory {
public:
static scoped_refptr<StreamTextureFactoryImpl> Create(
const scoped_refptr<ContextProviderCommandBuffer>& context_provider,
- GpuChannelHost* channel);
+ gpu::GpuChannelHost* channel);
// StreamTextureFactory implementation.
StreamTextureProxy* CreateProxy() override;
@@ -46,11 +46,11 @@ class StreamTextureFactoryImpl : public StreamTextureFactory {
friend class base::RefCounted<StreamTextureFactoryImpl>;
StreamTextureFactoryImpl(
const scoped_refptr<ContextProviderCommandBuffer>& context_provider,
- GpuChannelHost* channel);
+ gpu::GpuChannelHost* channel);
~StreamTextureFactoryImpl() override;
- scoped_refptr<content::ContextProviderCommandBuffer> context_provider_;
- scoped_refptr<GpuChannelHost> channel_;
+ scoped_refptr<ContextProviderCommandBuffer> context_provider_;
+ scoped_refptr<gpu::GpuChannelHost> channel_;
DISALLOW_IMPLICIT_CONSTRUCTORS(StreamTextureFactoryImpl);
};
« no previous file with comments | « content/renderer/gpu/stream_texture_host_android.cc ('k') | content/renderer/media/android/stream_texture_factory_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698