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

Unified Diff: content/common/gpu/client/gpu_video_decode_accelerator_host.cc

Issue 1827123002: Move content/common/gpu/client to gpu/ipc/client (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update Created 4 years, 9 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/client/gpu_video_decode_accelerator_host.cc
diff --git a/content/common/gpu/client/gpu_video_decode_accelerator_host.cc b/content/common/gpu/client/gpu_video_decode_accelerator_host.cc
index 1f0e3980d49dc5b0d4aaae1522bf4564f209d29a..95fdaf435d4cab63917cb4a453ab9ac606235109 100644
--- a/content/common/gpu/client/gpu_video_decode_accelerator_host.cc
+++ b/content/common/gpu/client/gpu_video_decode_accelerator_host.cc
@@ -8,10 +8,10 @@
#include "base/logging.h"
#include "base/message_loop/message_loop.h"
#include "base/thread_task_runner_handle.h"
-#include "build/build_config.h"
#include "base/thread_task_runner_handle.h"
-#include "content/common/gpu/client/gpu_channel_host.h"
+#include "build/build_config.h"
#include "content/common/gpu/media/media_messages.h"
+#include "gpu/ipc/client/gpu_channel_host.h"
#include "ipc/ipc_message_macros.h"
#include "ipc/ipc_message_utils.h"
@@ -19,8 +19,8 @@ using media::VideoDecodeAccelerator;
namespace content {
GpuVideoDecodeAcceleratorHost::GpuVideoDecodeAcceleratorHost(
- GpuChannelHost* channel,
- CommandBufferProxyImpl* impl)
+ gpu::GpuChannelHost* channel,
+ gpu::CommandBufferProxyImpl* impl)
: channel_(channel),
decoder_route_id_(MSG_ROUTING_NONE),
client_(NULL),
@@ -187,7 +187,7 @@ void GpuVideoDecodeAcceleratorHost::OnWillDeleteImpl() {
DCHECK(CalledOnValidThread());
impl_ = NULL;
- // The CommandBufferProxyImpl is going away; error out this VDA.
+ // The gpu::CommandBufferProxyImpl is going away; error out this VDA.
OnChannelError();
}

Powered by Google App Engine
This is Rietveld 408576698