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

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

Issue 1845563005: Refactor content/common/gpu into gpu/ipc/service (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Drop ref to deleted content_tests_gypi_values.content_unittests_ozone_sources 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
« no previous file with comments | « content/common/gpu/media/media_channel.cc ('k') | content/common/gpu/media/media_service.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_SERVICE_H_ 5 #ifndef CONTENT_COMMON_GPU_MEDIA_MEDIA_SERVICE_H_
6 #define CONTENT_COMMON_GPU_MEDIA_MEDIA_SERVICE_H_ 6 #define CONTENT_COMMON_GPU_MEDIA_MEDIA_SERVICE_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/containers/scoped_ptr_hash_map.h" 10 #include "base/containers/scoped_ptr_hash_map.h"
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "ipc/ipc_listener.h" 12 #include "ipc/ipc_listener.h"
13 #include "ipc/ipc_sender.h" 13 #include "ipc/ipc_sender.h"
14 #include "media/video/video_decode_accelerator.h" 14 #include "media/video/video_decode_accelerator.h"
15 15
16 namespace gpu {
17 class GpuChannel;
18 class GpuChannelManager;
19 }
20
16 namespace content { 21 namespace content {
17 22
18 class GpuChannel;
19 class GpuChannelManager;
20 class MediaChannel; 23 class MediaChannel;
21 24
22 class MediaService { 25 class MediaService {
23 public: 26 public:
24 MediaService(GpuChannelManager* channel_manager); 27 MediaService(gpu::GpuChannelManager* channel_manager);
25 ~MediaService(); 28 ~MediaService();
26 29
27 void AddChannel(int32_t client_id); 30 void AddChannel(int32_t client_id);
28 void RemoveChannel(int32_t client_id); 31 void RemoveChannel(int32_t client_id);
29 void DestroyAllChannels(); 32 void DestroyAllChannels();
30 33
31 private: 34 private:
32 GpuChannelManager* const channel_manager_; 35 gpu::GpuChannelManager* const channel_manager_;
33 base::ScopedPtrHashMap<int32_t, scoped_ptr<MediaChannel>> media_channels_; 36 base::ScopedPtrHashMap<int32_t, scoped_ptr<MediaChannel>> media_channels_;
34 DISALLOW_COPY_AND_ASSIGN(MediaService); 37 DISALLOW_COPY_AND_ASSIGN(MediaService);
35 }; 38 };
36 39
37 } // namespace content 40 } // namespace content
38 41
39 #endif // CONTENT_COMMON_GPU_MEDIA_MEDIA_SERVICE_H_ 42 #endif // CONTENT_COMMON_GPU_MEDIA_MEDIA_SERVICE_H_
OLDNEW
« no previous file with comments | « content/common/gpu/media/media_channel.cc ('k') | content/common/gpu/media/media_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698