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

Unified Diff: cc/output/overlay_renderer.h

Issue 132543002: Not for review. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 10 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/output/gl_renderer.cc ('k') | cc/output/overlay_renderer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/overlay_renderer.h
diff --git a/cc/output/overlay_renderer.h b/cc/output/overlay_renderer.h
new file mode 100644
index 0000000000000000000000000000000000000000..45fd3c2380502a3a553f2c405a579204f95cdab7
--- /dev/null
+++ b/cc/output/overlay_renderer.h
@@ -0,0 +1,36 @@
+// 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_OVERLAY_RENDERER_H_
+#define CC_OUTPUT_OVERLAY_RENDERER_H_
+
+#include "base/basictypes.h"
+#include "base/memory/scoped_ptr.h"
+#include "cc/base/cc_export.h"
+#include "cc/quads/render_pass.h"
+
+namespace cc {
+
+class CC_EXPORT OverlayRenderer {
+ public:
+ class Strategy {
+ public:
+ virtual ~Strategy() {}
+ virtual bool Attempt(RenderPassList* render_passes_in_draw_order) = 0;
+ };
+ virtual ~OverlayRenderer();
+ OverlayRenderer();
+
+ void Initialize();
+ void ProcessForOverlays(RenderPassList* render_passes_in_draw_order);
+
+ private:
+ typedef ScopedPtrVector<Strategy> StrategyList;
+ StrategyList strategies_;
+ DISALLOW_COPY_AND_ASSIGN(OverlayRenderer);
+};
+
+} // namespace cc
+
+#endif // CC_OUTPUT_OVERLAY_RENDERER_H_
« no previous file with comments | « cc/output/gl_renderer.cc ('k') | cc/output/overlay_renderer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698