| OLD | NEW |
| 1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 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_QUADS_RENDER_PASS_H_ | 5 #ifndef CC_QUADS_RENDER_PASS_H_ |
| 6 #define CC_QUADS_RENDER_PASS_H_ | 6 #define CC_QUADS_RENDER_PASS_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <unordered_map> | |
| 11 #include <utility> | 10 #include <utility> |
| 12 #include <vector> | 11 #include <vector> |
| 13 | 12 |
| 14 #include "base/callback.h" | 13 #include "base/callback.h" |
| 15 #include "base/hash.h" | 14 #include "base/hash.h" |
| 16 #include "base/macros.h" | 15 #include "base/macros.h" |
| 17 #include "cc/base/filter_operations.h" | 16 #include "cc/base/filter_operations.h" |
| 18 #include "cc/base/list_container.h" | 17 #include "cc/base/list_container.h" |
| 19 #include "cc/cc_export.h" | 18 #include "cc/cc_export.h" |
| 20 #include "cc/quads/draw_quad.h" | 19 #include "cc/quads/draw_quad.h" |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 } | 148 } |
| 150 | 149 |
| 151 DISALLOW_COPY_AND_ASSIGN(RenderPass); | 150 DISALLOW_COPY_AND_ASSIGN(RenderPass); |
| 152 }; | 151 }; |
| 153 | 152 |
| 154 using RenderPassList = std::vector<std::unique_ptr<RenderPass>>; | 153 using RenderPassList = std::vector<std::unique_ptr<RenderPass>>; |
| 155 | 154 |
| 156 } // namespace cc | 155 } // namespace cc |
| 157 | 156 |
| 158 #endif // CC_QUADS_RENDER_PASS_H_ | 157 #endif // CC_QUADS_RENDER_PASS_H_ |
| OLD | NEW |