OLD | NEW |
---|---|
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CC_OUTPUT_RENDERER_H_ | 5 #ifndef CC_OUTPUT_RENDERER_H_ |
6 #define CC_OUTPUT_RENDERER_H_ | 6 #define CC_OUTPUT_RENDERER_H_ |
7 | 7 |
8 #include <map> | |
piman
2013/04/26 00:15:02
nit: not using this?
danakj
2013/04/26 01:00:06
Done.
| |
9 | |
8 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
9 #include "cc/base/cc_export.h" | 11 #include "cc/base/cc_export.h" |
10 #include "cc/debug/latency_info.h" | 12 #include "cc/debug/latency_info.h" |
11 #include "cc/quads/render_pass.h" | 13 #include "cc/quads/render_pass.h" |
12 #include "cc/resources/managed_memory_policy.h" | 14 #include "cc/resources/managed_memory_policy.h" |
13 #include "cc/trees/layer_tree_host.h" | 15 #include "cc/trees/layer_tree_host.h" |
14 | 16 |
15 namespace cc { | 17 namespace cc { |
16 | 18 |
17 class CompositorFrameAck; | 19 class CompositorFrameAck; |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
81 : client_(client) {} | 83 : client_(client) {} |
82 | 84 |
83 RendererClient* client_; | 85 RendererClient* client_; |
84 | 86 |
85 DISALLOW_COPY_AND_ASSIGN(Renderer); | 87 DISALLOW_COPY_AND_ASSIGN(Renderer); |
86 }; | 88 }; |
87 | 89 |
88 } // namespace cc | 90 } // namespace cc |
89 | 91 |
90 #endif // CC_OUTPUT_RENDERER_H_ | 92 #endif // CC_OUTPUT_RENDERER_H_ |
OLD | NEW |