OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_FAKE_PICTURE_PILE_IMPL_H_ | 5 #ifndef CC_TEST_FAKE_PICTURE_PILE_IMPL_H_ |
6 #define CC_TEST_FAKE_PICTURE_PILE_IMPL_H_ | 6 #define CC_TEST_FAKE_PICTURE_PILE_IMPL_H_ |
7 | 7 |
8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
9 #include "cc/resources/picture_pile_impl.h" | 9 #include "cc/resources/picture_pile_impl.h" |
10 #include "cc/test/fake_content_layer_client.h" | 10 #include "cc/test/fake_content_layer_client.h" |
11 | 11 |
12 namespace cc { | 12 namespace cc { |
13 | 13 |
14 class FakePicturePileImpl : public PicturePileImpl { | 14 class FakePicturePileImpl : public PicturePileImpl { |
15 public: | 15 public: |
16 static scoped_refptr<FakePicturePileImpl> CreateFilledPile( | 16 static scoped_refptr<FakePicturePileImpl> CreateFilledPile( |
17 const gfx::Size& tile_size, | 17 const gfx::Size& tile_size, |
18 const gfx::Size& layer_bounds); | 18 const gfx::Size& layer_bounds); |
| 19 |
19 static scoped_refptr<FakePicturePileImpl> CreateEmptyPile( | 20 static scoped_refptr<FakePicturePileImpl> CreateEmptyPile( |
20 const gfx::Size& tile_size, | 21 const gfx::Size& tile_size, |
21 const gfx::Size& layer_bounds); | 22 const gfx::Size& layer_bounds); |
22 static scoped_refptr<FakePicturePileImpl> | 23 |
23 CreateEmptyPileThatThinksItHasRecordings(const gfx::Size& tile_size, | 24 static scoped_refptr<FakePicturePileImpl> CreatePileWithRecordedRegion( |
24 const gfx::Size& layer_bounds); | 25 const gfx::Size& tile_size, |
25 static scoped_refptr<FakePicturePileImpl> CreateInfiniteFilledPile(); | 26 const gfx::Size& layer_bounds, |
| 27 const Region& recorded_region); |
| 28 |
| 29 static scoped_refptr<FakePicturePileImpl> CreatePile(); |
26 | 30 |
27 TilingData& tiling() { return tiling_; } | 31 TilingData& tiling() { return tiling_; } |
28 | 32 |
29 void AddRecordingAt(int x, int y); | 33 void AddRecordingAt(int x, int y); |
30 void RemoveRecordingAt(int x, int y); | 34 void RemoveRecordingAt(int x, int y); |
31 void RerecordPile(); | 35 void RerecordPile(); |
32 | 36 |
33 void add_draw_rect(const gfx::RectF& rect) { | 37 void add_draw_rect(const gfx::RectF& rect) { |
34 client_.add_draw_rect(rect, default_paint_); | 38 client_.add_draw_rect(rect, default_paint_); |
35 } | 39 } |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 FakePicturePileImpl(); | 72 FakePicturePileImpl(); |
69 virtual ~FakePicturePileImpl(); | 73 virtual ~FakePicturePileImpl(); |
70 | 74 |
71 FakeContentLayerClient client_; | 75 FakeContentLayerClient client_; |
72 SkPaint default_paint_; | 76 SkPaint default_paint_; |
73 }; | 77 }; |
74 | 78 |
75 } // namespace cc | 79 } // namespace cc |
76 | 80 |
77 #endif // CC_TEST_FAKE_PICTURE_PILE_IMPL_H_ | 81 #endif // CC_TEST_FAKE_PICTURE_PILE_IMPL_H_ |
OLD | NEW |