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

Unified Diff: content/common/gpu/media/media_service.cc

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_service.h ('k') | content/common/gpu/media/vaapi_jpeg_decode_accelerator.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.cc
diff --git a/content/common/gpu/media/media_service.cc b/content/common/gpu/media/media_service.cc
index ed8368942f8baad72e5816d728035c39b49dc6cf..89ec8b1fe50faf0f583b80adbb193f64ad82d443 100644
--- a/content/common/gpu/media/media_service.cc
+++ b/content/common/gpu/media/media_service.cc
@@ -6,23 +6,23 @@
#include <utility>
-#include "ipc/ipc_message_macros.h"
-#include "ipc/param_traits_macros.h"
-#include "content/common/gpu/gpu_channel.h"
-#include "content/common/gpu/gpu_channel_manager.h"
#include "content/common/gpu/media/gpu_video_decode_accelerator.h"
#include "content/common/gpu/media/gpu_video_encode_accelerator.h"
#include "content/common/gpu/media/media_channel.h"
+#include "gpu/ipc/service/gpu_channel.h"
+#include "gpu/ipc/service/gpu_channel_manager.h"
+#include "ipc/ipc_message_macros.h"
+#include "ipc/param_traits_macros.h"
namespace content {
-MediaService::MediaService(GpuChannelManager* channel_manager)
+MediaService::MediaService(gpu::GpuChannelManager* channel_manager)
: channel_manager_(channel_manager) {}
MediaService::~MediaService() {}
void MediaService::AddChannel(int32_t client_id) {
- GpuChannel* gpu_channel = channel_manager_->LookupChannel(client_id);
+ gpu::GpuChannel* gpu_channel = channel_manager_->LookupChannel(client_id);
DCHECK(gpu_channel);
scoped_ptr<MediaChannel> media_channel(new MediaChannel(gpu_channel));
gpu_channel->SetUnhandledMessageListener(media_channel.get());
« no previous file with comments | « content/common/gpu/media/media_service.h ('k') | content/common/gpu/media/vaapi_jpeg_decode_accelerator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698