| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_RASTER_SOURCE_H_ | 5 #ifndef CC_TEST_FAKE_RASTER_SOURCE_H_ |
| 6 #define CC_TEST_FAKE_RASTER_SOURCE_H_ | 6 #define CC_TEST_FAKE_RASTER_SOURCE_H_ |
| 7 | 7 |
| 8 #include "base/memory/ref_counted.h" | 8 #include "base/memory/ref_counted.h" |
| 9 #include "cc/playback/raster_source.h" | 9 #include "cc/playback/raster_source.h" |
| 10 #include "ui/gfx/geometry/rect.h" | 10 #include "ui/gfx/geometry/rect.h" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 static scoped_refptr<FakeRasterSource> CreateFilled(const gfx::Size& size); | 22 static scoped_refptr<FakeRasterSource> CreateFilled(const gfx::Size& size); |
| 23 static scoped_refptr<FakeRasterSource> CreateFilledLCD(const gfx::Size& size); | 23 static scoped_refptr<FakeRasterSource> CreateFilledLCD(const gfx::Size& size); |
| 24 static scoped_refptr<FakeRasterSource> CreateFilledSolidColor( | 24 static scoped_refptr<FakeRasterSource> CreateFilledSolidColor( |
| 25 const gfx::Size& size); | 25 const gfx::Size& size); |
| 26 static scoped_refptr<FakeRasterSource> CreatePartiallyFilled( | 26 static scoped_refptr<FakeRasterSource> CreatePartiallyFilled( |
| 27 const gfx::Size& size, | 27 const gfx::Size& size, |
| 28 const gfx::Rect& recorded_viewport); | 28 const gfx::Rect& recorded_viewport); |
| 29 static scoped_refptr<FakeRasterSource> CreateEmpty(const gfx::Size& size); | 29 static scoped_refptr<FakeRasterSource> CreateEmpty(const gfx::Size& size); |
| 30 static scoped_refptr<FakeRasterSource> CreateFromRecordingSource( | 30 static scoped_refptr<FakeRasterSource> CreateFromRecordingSource( |
| 31 const RecordingSource* recording_source, | 31 const RecordingSource* recording_source, |
| 32 bool can_use_lcd); | 32 bool can_use_lcd, |
| 33 const gfx::Rect& recorded_viewport, |
| 34 const scoped_refptr<DisplayItemList>& display_list, |
| 35 const size_t& painter_reported_memory_usage); |
| 33 static scoped_refptr<FakeRasterSource> CreateFromRecordingSourceWithWaitable( | 36 static scoped_refptr<FakeRasterSource> CreateFromRecordingSourceWithWaitable( |
| 34 const RecordingSource* recording_source, | 37 const RecordingSource* recording_source, |
| 35 bool can_use_lcd, | 38 bool can_use_lcd, |
| 36 base::WaitableEvent* playback_allowed_event); | 39 base::WaitableEvent* playback_allowed_event, |
| 40 const gfx::Rect& recorded_viewport, |
| 41 const scoped_refptr<DisplayItemList>& display_list, |
| 42 const size_t& painter_reported_memory_usage); |
| 37 | 43 |
| 38 void PlaybackToCanvas(SkCanvas* canvas, | 44 void PlaybackToCanvas(SkCanvas* canvas, |
| 39 const PlaybackSettings& settings) const override; | 45 const PlaybackSettings& settings) const override; |
| 40 | 46 |
| 41 protected: | 47 protected: |
| 42 FakeRasterSource(const RecordingSource* recording_source, bool can_use_lcd); | 48 FakeRasterSource(const RecordingSource* recording_source, bool can_use_lcd); |
| 43 FakeRasterSource(const RecordingSource* recording_source, | 49 FakeRasterSource(const RecordingSource* recording_source, |
| 44 bool can_use_lcd, | 50 bool can_use_lcd, |
| 45 base::WaitableEvent* playback_allowed_event); | 51 base::WaitableEvent* playback_allowed_event); |
| 46 ~FakeRasterSource() override; | 52 ~FakeRasterSource() override; |
| 47 | 53 |
| 48 private: | 54 private: |
| 49 base::WaitableEvent* playback_allowed_event_; | 55 base::WaitableEvent* playback_allowed_event_; |
| 50 }; | 56 }; |
| 51 | 57 |
| 52 } // namespace cc | 58 } // namespace cc |
| 53 | 59 |
| 54 #endif // CC_TEST_FAKE_RASTER_SOURCE_H_ | 60 #endif // CC_TEST_FAKE_RASTER_SOURCE_H_ |
| OLD | NEW |