Chromium Code Reviews| Index: ui/gfx/vsync_provider.cc |
| diff --git a/ui/gfx/image/image_skia_source.cc b/ui/gfx/vsync_provider.cc |
| similarity index 55% |
| copy from ui/gfx/image/image_skia_source.cc |
| copy to ui/gfx/vsync_provider.cc |
| index 53bc4271ca78ecbb384aa42f73e81bcf8e11decf..a73e214bdba1efbb3c3193a746bb9ee319b712c6 100644 |
| --- a/ui/gfx/image/image_skia_source.cc |
| +++ b/ui/gfx/vsync_provider.cc |
| @@ -2,12 +2,13 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#include "ui/gfx/image/image_skia_source.h" |
|
sunnyps
2016/08/25 01:59:29
git cl upload marked this as a copy of ui/gfx/imag
brianderson
2016/08/25 05:09:50
Yeah. A little weird, but should be harmless. Not
|
| +#include "ui/gfx/vsync_provider.h" |
| namespace gfx { |
| -ImageSkiaSource::~ImageSkiaSource() {} |
| - |
| -bool ImageSkiaSource::HasRepresentationAtAllScales() const { return false; } |
| +void VSyncProviderStub::GetVSyncParameters( |
| + const UpdateVSyncCallback& callback) { |
| + callback.Run(timebase_, interval_); |
| +} |
| } // namespace gfx |