| Index: content/common/gpu/media/gpu_video_decode_accelerator.h
|
| diff --git a/content/common/gpu/media/gpu_video_decode_accelerator.h b/content/common/gpu/media/gpu_video_decode_accelerator.h
|
| index 3bbef5a9f1472724f12d222dbe86e39dda66cd70..f6eaed63b67efc2f42300b0d37821e99957a36e3 100644
|
| --- a/content/common/gpu/media/gpu_video_decode_accelerator.h
|
| +++ b/content/common/gpu/media/gpu_video_decode_accelerator.h
|
| @@ -15,10 +15,11 @@
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/shared_memory.h"
|
| #include "base/synchronization/waitable_event.h"
|
| -#include "content/common/gpu/gpu_command_buffer_stub.h"
|
| #include "content/common/gpu/media/gpu_video_decode_accelerator_helpers.h"
|
| #include "gpu/command_buffer/service/texture_manager.h"
|
| #include "gpu/config/gpu_info.h"
|
| +#include "gpu/ipc/service/gpu_command_buffer_stub.h"
|
| +#include "gpu/ipc/service/gpu_command_buffer_stub.h"
|
| #include "ipc/ipc_listener.h"
|
| #include "ipc/ipc_sender.h"
|
| #include "media/video/video_decode_accelerator.h"
|
| @@ -34,14 +35,14 @@ class GpuVideoDecodeAccelerator
|
| : public IPC::Listener,
|
| public IPC::Sender,
|
| public media::VideoDecodeAccelerator::Client,
|
| - public GpuCommandBufferStub::DestructionObserver {
|
| + public gpu::GpuCommandBufferStub::DestructionObserver {
|
| public:
|
| // Each of the arguments to the constructor must outlive this object.
|
| // |stub->decoder()| will be made current around any operation that touches
|
| // the underlying VDA so that it can make GL calls safely.
|
| GpuVideoDecodeAccelerator(
|
| int32_t host_route_id,
|
| - GpuCommandBufferStub* stub,
|
| + gpu::GpuCommandBufferStub* stub,
|
| const scoped_refptr<base::SingleThreadTaskRunner>& io_task_runner);
|
|
|
| // Static query for the capabilities, which includes the supported profiles.
|
| @@ -74,8 +75,8 @@ class GpuVideoDecodeAccelerator
|
|
|
| // Initialize VDAs from the set of VDAs supported for current platform until
|
| // one of them succeeds for given |config|. Send the |init_done_msg| when
|
| - // done. filter_ is passed to GpuCommandBufferStub channel only if the chosen
|
| - // VDA can decode on IO thread.
|
| + // done. filter_ is passed to gpu::GpuCommandBufferStub channel only if the
|
| + // chosen VDA can decode on IO thread.
|
| bool Initialize(const media::VideoDecodeAccelerator::Config& config);
|
|
|
| private:
|
| @@ -104,10 +105,10 @@ class GpuVideoDecodeAccelerator
|
| // Route ID to communicate with the host.
|
| const int32_t host_route_id_;
|
|
|
| - // Unowned pointer to the underlying GpuCommandBufferStub. |this| is
|
| + // Unowned pointer to the underlying gpu::GpuCommandBufferStub. |this| is
|
| // registered as a DestuctionObserver of |stub_| and will self-delete when
|
| // |stub_| is destroyed.
|
| - GpuCommandBufferStub* const stub_;
|
| + gpu::GpuCommandBufferStub* const stub_;
|
|
|
| // The underlying VideoDecodeAccelerator.
|
| scoped_ptr<media::VideoDecodeAccelerator> video_decode_accelerator_;
|
|
|