| Index: cc/test/fake_display_list_recording_source.cc
|
| diff --git a/cc/test/fake_display_list_recording_source.cc b/cc/test/fake_display_list_recording_source.cc
|
| index 01e6048527c256c40df999ac1d9856740da78785..4771b11986e02d510a0b162ce1083f6f62fb2eb3 100644
|
| --- a/cc/test/fake_display_list_recording_source.cc
|
| +++ b/cc/test/fake_display_list_recording_source.cc
|
| @@ -4,7 +4,7 @@
|
|
|
| #include "cc/test/fake_display_list_recording_source.h"
|
|
|
| -#include "cc/test/fake_display_list_raster_source.h"
|
| +#include "cc/test/fake_raster_source.h"
|
| #include "cc/test/skia_common.h"
|
|
|
| namespace cc {
|
| @@ -19,9 +19,9 @@ bool FakeDisplayListRecordingSource::IsSuitableForGpuRasterization() const {
|
| return DisplayListRecordingSource::IsSuitableForGpuRasterization();
|
| }
|
|
|
| -scoped_refptr<DisplayListRasterSource>
|
| -FakeDisplayListRecordingSource::CreateRasterSource(bool can_use_lcd) const {
|
| - return FakeDisplayListRasterSource::CreateFromRecordingSourceWithWaitable(
|
| +scoped_refptr<RasterSource> FakeDisplayListRecordingSource::CreateRasterSource(
|
| + bool can_use_lcd) const {
|
| + return FakeRasterSource::CreateFromRecordingSourceWithWaitable(
|
| this, can_use_lcd, playback_allowed_event_);
|
| }
|
|
|
|
|