Index: third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.cpp |
diff --git a/third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.cpp b/third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.cpp |
index 9721aa79c89f256a3089ae543bf57ca9510c97b6..bb0910eda8837e2dd25a1dcd30060867e7cc6ff3 100644 |
--- a/third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.cpp |
+++ b/third_party/WebKit/Source/core/layout/compositing/PaintLayerCompositor.cpp |
@@ -1147,7 +1147,7 @@ void PaintLayerCompositor::attachCompositorTimeline() |
if (!page) |
return; |
- WebCompositorAnimationTimeline* compositorTimeline = frame.document() ? frame.document()->timeline().compositorTimeline() : nullptr; |
+ CompositorAnimationTimeline* compositorTimeline = frame.document() ? frame.document()->timeline().compositorTimeline() : nullptr; |
if (compositorTimeline) |
page->chromeClient().attachCompositorAnimationTimeline(compositorTimeline, &frame); |
} |
@@ -1159,7 +1159,7 @@ void PaintLayerCompositor::detachCompositorTimeline() |
if (!page) |
return; |
- WebCompositorAnimationTimeline* compositorTimeline = frame.document() ? frame.document()->timeline().compositorTimeline() : nullptr; |
+ CompositorAnimationTimeline* compositorTimeline = frame.document() ? frame.document()->timeline().compositorTimeline() : nullptr; |
if (compositorTimeline) |
page->chromeClient().detachCompositorAnimationTimeline(compositorTimeline, &frame); |
} |