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

Side by Side Diff: content/common/gpu/media/media_channel.h

Issue 1846253003: Revert of Refactor content/common/gpu into gpu/ipc/service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 unified diff | Download patch
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_COMMON_GPU_MEDIA_MEDIA_CHANNEL_H_ 5 #ifndef CONTENT_COMMON_GPU_MEDIA_MEDIA_CHANNEL_H_
6 #define CONTENT_COMMON_GPU_MEDIA_MEDIA_CHANNEL_H_ 6 #define CONTENT_COMMON_GPU_MEDIA_MEDIA_CHANNEL_H_
7 7
8 #include "content/common/gpu/media/gpu_jpeg_decode_accelerator.h" 8 #include "content/common/gpu/media/gpu_jpeg_decode_accelerator.h"
9 #include "ipc/ipc_listener.h" 9 #include "ipc/ipc_listener.h"
10 #include "ipc/ipc_sender.h" 10 #include "ipc/ipc_sender.h"
11 #include "media/video/video_decode_accelerator.h" 11 #include "media/video/video_decode_accelerator.h"
12 12
13 namespace media { 13 namespace media {
14 struct CreateVideoEncoderParams; 14 struct CreateVideoEncoderParams;
15 } 15 }
16 16
17 namespace gpu {
18 class GpuChannel;
19 class GpuCommandBufferStub;
20 }
21
22 namespace content { 17 namespace content {
23 18
19 class GpuChannel;
20 class GpuCommandBufferStub;
24 class MediaChannelDispatchHelper; 21 class MediaChannelDispatchHelper;
25 22
26 class MediaChannel : public IPC::Listener, public IPC::Sender { 23 class MediaChannel : public IPC::Listener, public IPC::Sender {
27 public: 24 public:
28 explicit MediaChannel(gpu::GpuChannel* channel); 25 explicit MediaChannel(GpuChannel* channel);
29 ~MediaChannel() override; 26 ~MediaChannel() override;
30 27
31 // IPC::Sender implementation: 28 // IPC::Sender implementation:
32 bool Send(IPC::Message* msg) override; 29 bool Send(IPC::Message* msg) override;
33 30
34 private: 31 private:
35 friend class MediaChannelDispatchHelper; 32 friend class MediaChannelDispatchHelper;
36 33
37 // IPC::Listener implementation: 34 // IPC::Listener implementation:
38 bool OnMessageReceived(const IPC::Message& message) override; 35 bool OnMessageReceived(const IPC::Message& message) override;
39 36
40 // Message handlers. 37 // Message handlers.
41 void OnCreateJpegDecoder(int32_t route_id, IPC::Message* reply_msg); 38 void OnCreateJpegDecoder(int32_t route_id, IPC::Message* reply_msg);
42 void OnCreateVideoDecoder(int32_t command_buffer_route_id, 39 void OnCreateVideoDecoder(int32_t command_buffer_route_id,
43 const media::VideoDecodeAccelerator::Config& config, 40 const media::VideoDecodeAccelerator::Config& config,
44 int32_t route_id, 41 int32_t route_id,
45 IPC::Message* reply_message); 42 IPC::Message* reply_message);
46 void OnCreateVideoEncoder(int32_t command_buffer_route_id, 43 void OnCreateVideoEncoder(int32_t command_buffer_route_id,
47 const media::CreateVideoEncoderParams& params, 44 const media::CreateVideoEncoderParams& params,
48 IPC::Message* reply_message); 45 IPC::Message* reply_message);
49 46
50 gpu::GpuChannel* const channel_; 47 GpuChannel* const channel_;
51 scoped_ptr<GpuJpegDecodeAccelerator> jpeg_decoder_; 48 scoped_ptr<GpuJpegDecodeAccelerator> jpeg_decoder_;
52 DISALLOW_COPY_AND_ASSIGN(MediaChannel); 49 DISALLOW_COPY_AND_ASSIGN(MediaChannel);
53 }; 50 };
54 51
55 } // namespace content 52 } // namespace content
56 53
57 #endif // CONTENT_COMMON_GPU_MEDIA_MEDIA_CHANNEL_H_ 54 #endif // CONTENT_COMMON_GPU_MEDIA_MEDIA_CHANNEL_H_
OLDNEW
« no previous file with comments | « content/common/gpu/media/gpu_video_encode_accelerator.cc ('k') | content/common/gpu/media/media_channel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698