Index: content/common/gpu/media/media_channel.h |
diff --git a/content/common/gpu/media/media_channel.h b/content/common/gpu/media/media_channel.h |
index b6a00b2d046d92b9b48c3ce02d67c22d9d528211..84b4d7748380d1649b853d65b2c13f1d36d19b4d 100644 |
--- a/content/common/gpu/media/media_channel.h |
+++ b/content/common/gpu/media/media_channel.h |
@@ -10,16 +10,19 @@ |
#include "ipc/ipc_sender.h" |
#include "media/video/video_decode_accelerator.h" |
-namespace content { |
- |
+namespace gpu { |
class GpuChannel; |
class GpuCommandBufferStub; |
+} |
+ |
+namespace content { |
+ |
class MediaChannelDispatchHelper; |
struct CreateVideoEncoderParams; |
class MediaChannel : public IPC::Listener, public IPC::Sender { |
public: |
- explicit MediaChannel(GpuChannel* channel); |
+ explicit MediaChannel(gpu::GpuChannel* channel); |
~MediaChannel() override; |
// IPC::Sender implementation: |
@@ -41,7 +44,7 @@ class MediaChannel : public IPC::Listener, public IPC::Sender { |
const CreateVideoEncoderParams& params, |
IPC::Message* reply_message); |
- GpuChannel* const channel_; |
+ gpu::GpuChannel* const channel_; |
scoped_ptr<GpuJpegDecodeAccelerator> jpeg_decoder_; |
DISALLOW_COPY_AND_ASSIGN(MediaChannel); |
}; |