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

Unified Diff: blimp/client/support/compositor/blimp_gpu_memory_buffer_manager.h

Issue 2624903006: Remove all blimp client code. (Closed)
Patch Set: Update buildbot configuration Created 3 years, 11 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: blimp/client/support/compositor/blimp_gpu_memory_buffer_manager.h
diff --git a/blimp/client/support/compositor/blimp_gpu_memory_buffer_manager.h b/blimp/client/support/compositor/blimp_gpu_memory_buffer_manager.h
deleted file mode 100644
index 1b09f6691bc93de78111fcef0443d4cf004bf48b..0000000000000000000000000000000000000000
--- a/blimp/client/support/compositor/blimp_gpu_memory_buffer_manager.h
+++ /dev/null
@@ -1,40 +0,0 @@
-// Copyright 2016 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 BLIMP_CLIENT_SUPPORT_COMPOSITOR_BLIMP_GPU_MEMORY_BUFFER_MANAGER_H_
-#define BLIMP_CLIENT_SUPPORT_COMPOSITOR_BLIMP_GPU_MEMORY_BUFFER_MANAGER_H_
-
-#include <memory>
-
-#include "base/macros.h"
-#include "cc/output/buffer_to_texture_target_map.h"
-#include "gpu/command_buffer/client/gpu_memory_buffer_manager.h"
-
-namespace blimp {
-namespace client {
-
-class BlimpGpuMemoryBufferManager : public gpu::GpuMemoryBufferManager {
- public:
- BlimpGpuMemoryBufferManager();
- ~BlimpGpuMemoryBufferManager() override;
-
- static cc::BufferToTextureTargetMap GetDefaultBufferToTextureTargetMap();
-
- // 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:
- DISALLOW_COPY_AND_ASSIGN(BlimpGpuMemoryBufferManager);
-};
-
-} // namespace client
-} // namespace blimp
-
-#endif // BLIMP_CLIENT_SUPPORT_COMPOSITOR_BLIMP_GPU_MEMORY_BUFFER_MANAGER_H_

Powered by Google App Engine
This is Rietveld 408576698