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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/media/media_service.h
diff --git a/content/common/gpu/media/media_service.h b/content/common/gpu/media/media_service.h
index fb10904bdbf0c0a4242e2dc3dd0ff4802a234a12..15dca82260a1d0f0ba8dc743ab33c53f21370e7a 100644
--- a/content/common/gpu/media/media_service.h
+++ b/content/common/gpu/media/media_service.h
@@ -13,15 +13,18 @@
#include "ipc/ipc_sender.h"
#include "media/video/video_decode_accelerator.h"
-namespace content {
-
+namespace gpu {
class GpuChannel;
class GpuChannelManager;
+}
+
+namespace content {
+
class MediaChannel;
class MediaService {
public:
- MediaService(GpuChannelManager* channel_manager);
+ MediaService(gpu::GpuChannelManager* channel_manager);
~MediaService();
void AddChannel(int32_t client_id);
@@ -29,7 +32,7 @@ class MediaService {
void DestroyAllChannels();
private:
- GpuChannelManager* const channel_manager_;
+ gpu::GpuChannelManager* const channel_manager_;
base::ScopedPtrHashMap<int32_t, scoped_ptr<MediaChannel>> media_channels_;
DISALLOW_COPY_AND_ASSIGN(MediaService);
};
« 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