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" |
(...skipping 16 matching lines...) Expand all Loading... |
27 const Region& recorded_region); | 27 const Region& recorded_region); |
28 | 28 |
29 static scoped_refptr<FakePicturePileImpl> CreatePile(); | 29 static scoped_refptr<FakePicturePileImpl> CreatePile(); |
30 | 30 |
31 TilingData& tiling() { return tiling_; } | 31 TilingData& tiling() { return tiling_; } |
32 | 32 |
33 void AddRecordingAt(int x, int y); | 33 void AddRecordingAt(int x, int y); |
34 void RemoveRecordingAt(int x, int y); | 34 void RemoveRecordingAt(int x, int y); |
35 void RerecordPile(); | 35 void RerecordPile(); |
36 | 36 |
37 void AnalyzeInRect(gfx::Rect content_rect, | |
38 float contents_scale, | |
39 Analysis* analysis); | |
40 | |
41 void add_draw_rect(const gfx::RectF& rect) { | 37 void add_draw_rect(const gfx::RectF& rect) { |
42 client_.add_draw_rect(rect, default_paint_); | 38 client_.add_draw_rect(rect, default_paint_); |
43 } | 39 } |
44 | 40 |
45 void add_draw_bitmap(const SkBitmap& bitmap, gfx::Point point) { | 41 void add_draw_bitmap(const SkBitmap& bitmap, gfx::Point point) { |
46 client_.add_draw_bitmap(bitmap, point, default_paint_); | 42 client_.add_draw_bitmap(bitmap, point, default_paint_); |
47 } | 43 } |
48 | 44 |
49 void add_draw_rect_with_paint(const gfx::RectF& rect, const SkPaint& paint) { | 45 void add_draw_rect_with_paint(const gfx::RectF& rect, const SkPaint& paint) { |
50 client_.add_draw_rect(rect, paint); | 46 client_.add_draw_rect(rect, paint); |
(...skipping 25 matching lines...) Expand all Loading... |
76 FakePicturePileImpl(); | 72 FakePicturePileImpl(); |
77 virtual ~FakePicturePileImpl(); | 73 virtual ~FakePicturePileImpl(); |
78 | 74 |
79 FakeContentLayerClient client_; | 75 FakeContentLayerClient client_; |
80 SkPaint default_paint_; | 76 SkPaint default_paint_; |
81 }; | 77 }; |
82 | 78 |
83 } // namespace cc | 79 } // namespace cc |
84 | 80 |
85 #endif // CC_TEST_FAKE_PICTURE_PILE_IMPL_H_ | 81 #endif // CC_TEST_FAKE_PICTURE_PILE_IMPL_H_ |
OLD | NEW |