Index: content/common/gpu/media/gpu_video_encode_accelerator.cc |
diff --git a/content/common/gpu/media/gpu_video_encode_accelerator.cc b/content/common/gpu/media/gpu_video_encode_accelerator.cc |
index 1b259c4ed2b9b4ea5baf04ab58595b4b225f5776..31393cc47e2e02836561c1960498dcc0c70579ef 100644 |
--- a/content/common/gpu/media/gpu_video_encode_accelerator.cc |
+++ b/content/common/gpu/media/gpu_video_encode_accelerator.cc |
@@ -12,10 +12,10 @@ |
#include "base/sys_info.h" |
#include "build/build_config.h" |
#include "content/common/gpu/client/gpu_memory_buffer_impl.h" |
-#include "content/common/gpu/gpu_channel.h" |
-#include "content/common/gpu/gpu_channel_manager.h" |
#include "content/common/gpu/media/gpu_video_accelerator_util.h" |
#include "content/common/gpu/media/media_messages.h" |
+#include "gpu/ipc/service/gpu_channel.h" |
+#include "gpu/ipc/service/gpu_channel_manager.h" |
#include "ipc/ipc_message_macros.h" |
#include "media/base/bind_to_current_loop.h" |
#include "media/base/limits.h" |
@@ -45,7 +45,7 @@ void DestroyGpuMemoryBuffer(const gpu::SyncToken& sync_token) {} |
} // namespace |
static bool MakeDecoderContextCurrent( |
- const base::WeakPtr<GpuCommandBufferStub> stub) { |
+ const base::WeakPtr<gpu::GpuCommandBufferStub> stub) { |
if (!stub) { |
DLOG(ERROR) << "Stub is gone; won't MakeCurrent()."; |
return false; |
@@ -59,8 +59,9 @@ static bool MakeDecoderContextCurrent( |
return true; |
} |
-GpuVideoEncodeAccelerator::GpuVideoEncodeAccelerator(int32_t host_route_id, |
- GpuCommandBufferStub* stub) |
+GpuVideoEncodeAccelerator::GpuVideoEncodeAccelerator( |
+ int32_t host_route_id, |
+ gpu::GpuCommandBufferStub* stub) |
: host_route_id_(host_route_id), |
stub_(stub), |
input_format_(media::PIXEL_FORMAT_UNKNOWN), |