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

Unified Diff: blimp/client/support/compositor/compositor_dependencies_impl.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/compositor_dependencies_impl.h
diff --git a/blimp/client/support/compositor/compositor_dependencies_impl.h b/blimp/client/support/compositor/compositor_dependencies_impl.h
deleted file mode 100644
index 531c68de8bbdff0a5d060ea2a7deef228224667c..0000000000000000000000000000000000000000
--- a/blimp/client/support/compositor/compositor_dependencies_impl.h
+++ /dev/null
@@ -1,39 +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_COMPOSITOR_DEPENDENCIES_IMPL_H_
-#define BLIMP_CLIENT_SUPPORT_COMPOSITOR_COMPOSITOR_DEPENDENCIES_IMPL_H_
-
-#include "base/macros.h"
-#include "base/memory/ref_counted.h"
-#include "blimp/client/public/compositor/compositor_dependencies.h"
-
-namespace blimp {
-namespace client {
-
-class BlimpGpuMemoryBufferManager;
-
-class CompositorDependenciesImpl : public CompositorDependencies {
- public:
- CompositorDependenciesImpl();
- ~CompositorDependenciesImpl() override;
-
- // CompositorDependencies implementation.
- gpu::GpuMemoryBufferManager* GetGpuMemoryBufferManager() override;
- cc::SurfaceManager* GetSurfaceManager() override;
- cc::FrameSinkId AllocateFrameSinkId() override;
- void GetContextProviders(const ContextProviderCallback& callback) override;
-
- private:
- std::unique_ptr<BlimpGpuMemoryBufferManager> gpu_memory_buffer_manager_;
- std::unique_ptr<cc::SurfaceManager> surface_manager_;
- uint32_t next_surface_id_;
-
- DISALLOW_COPY_AND_ASSIGN(CompositorDependenciesImpl);
-};
-
-} // namespace client
-} // namespace blimp
-
-#endif // BLIMP_CLIENT_SUPPORT_COMPOSITOR_COMPOSITOR_DEPENDENCIES_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698