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

Side by Side Diff: cc/test/surface_aggregator_test_helpers.h

Issue 2503283002: cc: Cleanup class/struct forward declarations (Closed)
Patch Set: Add missing fwd class decl in blimp_embedder_compositor.h Created 4 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « cc/test/layer_tree_test.h ('k') | cc/test/surface_hittest_test_helpers.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_TEST_SURFACE_AGGREGATOR_TEST_HELPERS_H_ 5 #ifndef CC_TEST_SURFACE_AGGREGATOR_TEST_HELPERS_H_
6 #define CC_TEST_SURFACE_AGGREGATOR_TEST_HELPERS_H_ 6 #define CC_TEST_SURFACE_AGGREGATOR_TEST_HELPERS_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 9
10 #include <vector> 10 #include <vector>
11 11
12 #include "cc/quads/draw_quad.h" 12 #include "cc/quads/draw_quad.h"
13 #include "cc/quads/render_pass_id.h" 13 #include "cc/quads/render_pass_id.h"
14 #include "cc/surfaces/surface_id.h" 14 #include "cc/surfaces/surface_id.h"
15 #include "third_party/skia/include/core/SkColor.h" 15 #include "third_party/skia/include/core/SkColor.h"
16 #include "ui/gfx/geometry/size.h" 16 #include "ui/gfx/geometry/size.h"
17 17
18 namespace cc { 18 namespace cc {
19 19
20 class RenderPass; 20 class RenderPass;
21 class Surface;
22 class TestRenderPass; 21 class TestRenderPass;
23 22
24 typedef std::vector<std::unique_ptr<RenderPass>> RenderPassList; 23 typedef std::vector<std::unique_ptr<RenderPass>> RenderPassList;
25 24
26 namespace test { 25 namespace test {
27 26
28 struct Quad { 27 struct Quad {
29 static Quad SolidColorQuad(SkColor color) { 28 static Quad SolidColorQuad(SkColor color) {
30 Quad quad; 29 Quad quad;
31 quad.material = DrawQuad::SOLID_COLOR; 30 quad.material = DrawQuad::SOLID_COLOR;
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 void TestPassMatchesExpectations(Pass expected_pass, const RenderPass* pass); 87 void TestPassMatchesExpectations(Pass expected_pass, const RenderPass* pass);
89 88
90 void TestPassesMatchExpectations(Pass* expected_passes, 89 void TestPassesMatchExpectations(Pass* expected_passes,
91 size_t expected_pass_count, 90 size_t expected_pass_count,
92 const RenderPassList* passes); 91 const RenderPassList* passes);
93 92
94 } // namespace test 93 } // namespace test
95 } // namespace cc 94 } // namespace cc
96 95
97 #endif // CC_TEST_SURFACE_AGGREGATOR_TEST_HELPERS_H_ 96 #endif // CC_TEST_SURFACE_AGGREGATOR_TEST_HELPERS_H_
OLDNEW
« no previous file with comments | « cc/test/layer_tree_test.h ('k') | cc/test/surface_hittest_test_helpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698