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

Unified Diff: content/common/gpu/media/media_channel.h

Issue 1845563005: Refactor content/common/gpu into gpu/ipc/service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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/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 c38b274467116fdedc9e0e7e1131acdc0d381b44..7cfe0378587b2ce366985b8046affffd3b196066 100644
--- a/content/common/gpu/media/media_channel.h
+++ b/content/common/gpu/media/media_channel.h
@@ -14,15 +14,18 @@ namespace media {
struct CreateVideoEncoderParams;
}
-namespace content {
-
+namespace gpu {
class GpuChannel;
class GpuCommandBufferStub;
+}
+
+namespace content {
+
class MediaChannelDispatchHelper;
class MediaChannel : public IPC::Listener, public IPC::Sender {
public:
- explicit MediaChannel(GpuChannel* channel);
+ explicit MediaChannel(gpu::GpuChannel* channel);
~MediaChannel() override;
// IPC::Sender implementation:
@@ -44,7 +47,7 @@ class MediaChannel : public IPC::Listener, public IPC::Sender {
const media::CreateVideoEncoderParams& params,
IPC::Message* reply_message);
- GpuChannel* const channel_;
+ gpu::GpuChannel* const channel_;
scoped_ptr<GpuJpegDecodeAccelerator> jpeg_decoder_;
DISALLOW_COPY_AND_ASSIGN(MediaChannel);
};

Powered by Google App Engine
This is Rietveld 408576698