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

Unified Diff: cc/output/delegating_renderer.h

Issue 2323583002: cc: Remove DelegatingRenderer. (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « cc/layers/picture_layer_impl.cc ('k') | cc/output/delegating_renderer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/delegating_renderer.h
diff --git a/cc/output/delegating_renderer.h b/cc/output/delegating_renderer.h
deleted file mode 100644
index f2697f971f5b10f76dee6be9abc714d128455757..0000000000000000000000000000000000000000
--- a/cc/output/delegating_renderer.h
+++ /dev/null
@@ -1,36 +0,0 @@
-// Copyright 2012 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 CC_OUTPUT_DELEGATING_RENDERER_H_
-#define CC_OUTPUT_DELEGATING_RENDERER_H_
-
-#include <memory>
-
-#include "base/macros.h"
-#include "cc/base/cc_export.h"
-#include "cc/output/compositor_frame.h"
-
-namespace cc {
-class OutputSurface;
-class ResourceProvider;
-
-class CC_EXPORT DelegatingRenderer {
- public:
- DelegatingRenderer(OutputSurface* output_surface,
- ResourceProvider* resource_provider);
- ~DelegatingRenderer();
-
- void DrawFrame(CompositorFrameMetadata metadata,
- RenderPassList render_passes_in_draw_order);
-
- private:
- OutputSurface* const output_surface_;
- ResourceProvider* const resource_provider_;
-
- DISALLOW_COPY_AND_ASSIGN(DelegatingRenderer);
-};
-
-} // namespace cc
-
-#endif // CC_OUTPUT_DELEGATING_RENDERER_H_
« no previous file with comments | « cc/layers/picture_layer_impl.cc ('k') | cc/output/delegating_renderer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698