Index: cc/render_pass_sink.h |
diff --git a/cc/render_pass_sink.h b/cc/render_pass_sink.h |
index 638cbb270ce9b24689d5095baf174ade4f4d1a13..f3bac1d01e85da5827047d72886a7af94f1f84e3 100644 |
--- a/cc/render_pass_sink.h |
+++ b/cc/render_pass_sink.h |
@@ -1,3 +1,20 @@ |
// 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 CCRenderPassSink_h |
+#define CCRenderPassSink_h |
+ |
+#include "base/memory/scoped_ptr.h" |
+ |
+namespace cc { |
+ |
+class CCRenderPass; |
+ |
+class CCRenderPassSink { |
+public: |
+ virtual void appendRenderPass(scoped_ptr<CCRenderPass>) = 0; |
+}; |
+ |
+} |
+#endif // CCRenderPassSink_h |