Chromium Code Reviews| Index: third_party/WebKit/Source/core/svg/graphics/SVGImageChromeClient.h |
| diff --git a/third_party/WebKit/Source/core/svg/graphics/SVGImageChromeClient.h b/third_party/WebKit/Source/core/svg/graphics/SVGImageChromeClient.h |
| index 35e6148a087b043a2029483d02eb628947dfd1b0..42835fa37f52f3ddd5a3843410dde6e754278f5b 100644 |
| --- a/third_party/WebKit/Source/core/svg/graphics/SVGImageChromeClient.h |
| +++ b/third_party/WebKit/Source/core/svg/graphics/SVGImageChromeClient.h |
| @@ -58,11 +58,11 @@ private: |
| void invalidateRect(const IntRect&) override; |
| void scheduleAnimation(Widget*) override; |
| - void setTimer(Timer<SVGImageChromeClient>*); |
| - void animationTimerFired(Timer<SVGImageChromeClient>*); |
| + void setTimer(TaskRunnerTimer<SVGImageChromeClient>*); |
| + void animationTimerFired(TimerBase*); |
| SVGImage* m_image; |
| - std::unique_ptr<Timer<SVGImageChromeClient>> m_animationTimer; |
| + std::unique_ptr<TaskRunnerTimer<SVGImageChromeClient>> m_animationTimer; |
|
haraken
2016/07/28 14:44:46
Yeah, this looks ugly...
|
| enum { |
| Running, |
| Suspended, |