| Index: content/child/child_gpu_memory_buffer_manager.h
|
| diff --git a/content/child/child_gpu_memory_buffer_manager.h b/content/child/child_gpu_memory_buffer_manager.h
|
| deleted file mode 100644
|
| index c349be5755e4b7638f1f33116f3dc2aaf206cbab..0000000000000000000000000000000000000000
|
| --- a/content/child/child_gpu_memory_buffer_manager.h
|
| +++ /dev/null
|
| @@ -1,38 +0,0 @@
|
| -// Copyright 2014 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef CONTENT_CHILD_CHILD_GPU_MEMORY_BUFFER_MANAGER_H_
|
| -#define CONTENT_CHILD_CHILD_GPU_MEMORY_BUFFER_MANAGER_H_
|
| -
|
| -#include <memory>
|
| -
|
| -#include "base/macros.h"
|
| -#include "content/child/thread_safe_sender.h"
|
| -#include "gpu/command_buffer/client/gpu_memory_buffer_manager.h"
|
| -
|
| -namespace content {
|
| -
|
| -class ChildGpuMemoryBufferManager : public gpu::GpuMemoryBufferManager {
|
| - public:
|
| - explicit ChildGpuMemoryBufferManager(ThreadSafeSender* sender);
|
| - ~ChildGpuMemoryBufferManager() override;
|
| -
|
| - // Overridden from gpu::GpuMemoryBufferManager:
|
| - std::unique_ptr<gfx::GpuMemoryBuffer> CreateGpuMemoryBuffer(
|
| - const gfx::Size& size,
|
| - gfx::BufferFormat format,
|
| - gfx::BufferUsage usage,
|
| - gpu::SurfaceHandle surface_handle) override;
|
| - void SetDestructionSyncToken(gfx::GpuMemoryBuffer* buffer,
|
| - const gpu::SyncToken& sync_token) override;
|
| -
|
| - private:
|
| - scoped_refptr<ThreadSafeSender> sender_;
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(ChildGpuMemoryBufferManager);
|
| -};
|
| -
|
| -} // namespace content
|
| -
|
| -#endif // CONTENT_CHILD_CHILD_GPU_MEMORY_BUFFER_MANAGER_H_
|
|
|