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

Unified Diff: content/common/gpu/client/gpu_jpeg_decode_accelerator_host.h

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_jpeg_decode_accelerator_host.h
diff --git a/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.h b/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.h
index 53465f3aee75fa5a01887e50b7509ef67fdf477a..1b8bbefb576b6c49128e91b2be2280ced712356a 100644
--- a/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.h
+++ b/content/common/gpu/client/gpu_jpeg_decode_accelerator_host.h
@@ -16,13 +16,16 @@ namespace base {
class SingleThreadTaskRunner;
}
+namespace gpu {
+class GpuChannelHost;
+}
+
namespace IPC {
class Listener;
class Message;
}
namespace content {
-class GpuChannelHost;
// This class is used to talk to JpegDecodeAccelerator in the GPU process
// through IPC messages.
@@ -33,7 +36,7 @@ class GpuJpegDecodeAcceleratorHost : public media::JpegDecodeAccelerator,
// VideoCaptureGpuJpegDecoder delete |this| before |channel|. So |this| is
// guaranteed not to outlive |channel|.
GpuJpegDecodeAcceleratorHost(
- GpuChannelHost* channel,
+ gpu::GpuChannelHost* channel,
int32_t route_id,
const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner);
~GpuJpegDecodeAcceleratorHost() override;
@@ -55,7 +58,7 @@ class GpuJpegDecodeAcceleratorHost : public media::JpegDecodeAccelerator,
// Unowned reference to the GpuChannelHost to send IPC messages to the GPU
// process.
- GpuChannelHost* channel_;
+ gpu::GpuChannelHost* channel_;
// Route ID for the associated decoder in the GPU process.
int32_t decoder_route_id_;
« no previous file with comments | « content/common/gpu/client/gpu_context_tests.h ('k') | content/common/gpu/client/gpu_jpeg_decode_accelerator_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698