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

Unified Diff: content/common/gpu/client/gpu_video_encode_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_encode_accelerator_host.cc
diff --git a/content/common/gpu/client/gpu_video_encode_accelerator_host.cc b/content/common/gpu/client/gpu_video_encode_accelerator_host.cc
index 553fa209d44cf062dbdb39da52005024b54dc9a6..53c12fcb7d713f2646e481b515cafabd32fe76bd 100644
--- a/content/common/gpu/client/gpu_video_encode_accelerator_host.cc
+++ b/content/common/gpu/client/gpu_video_encode_accelerator_host.cc
@@ -7,9 +7,9 @@
#include "base/location.h"
#include "base/logging.h"
#include "base/thread_task_runner_handle.h"
-#include "content/common/gpu/client/gpu_channel_host.h"
#include "content/common/gpu/media/gpu_video_accelerator_util.h"
#include "content/common/gpu/media/media_messages.h"
+#include "gpu/ipc/client/gpu_channel_host.h"
#include "media/base/video_frame.h"
#include "media/video/video_encode_accelerator.h"
#include "ui/gfx/gpu_memory_buffer.h"
@@ -17,8 +17,8 @@
namespace content {
GpuVideoEncodeAcceleratorHost::GpuVideoEncodeAcceleratorHost(
- GpuChannelHost* channel,
- CommandBufferProxyImpl* impl)
+ gpu::GpuChannelHost* channel,
+ gpu::CommandBufferProxyImpl* impl)
: channel_(channel),
encoder_route_id_(MSG_ROUTING_NONE),
client_(NULL),
@@ -181,7 +181,7 @@ void GpuVideoEncodeAcceleratorHost::OnWillDeleteImpl() {
DCHECK(CalledOnValidThread());
impl_ = NULL;
- // The CommandBufferProxyImpl is going away; error out this VEA.
+ // The gpu::CommandBufferProxyImpl is going away; error out this VEA.
OnChannelError();
}

Powered by Google App Engine
This is Rietveld 408576698