Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(112)

Unified Diff: third_party/WebKit/Source/web/LinkHighlightImpl.h

Issue 1616653002: CC Animation: Move files from cc_blink to Source/platform/animation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Fix copyrights and years. Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/LinkHighlightImpl.h
diff --git a/third_party/WebKit/Source/web/LinkHighlightImpl.h b/third_party/WebKit/Source/web/LinkHighlightImpl.h
index d42d8bcf2a4c2ab2adcc37ee5dbef694cfabeecd..8002bcc9db63d498fc70ab9c7525b363561df814 100644
--- a/third_party/WebKit/Source/web/LinkHighlightImpl.h
+++ b/third_party/WebKit/Source/web/LinkHighlightImpl.h
@@ -26,12 +26,12 @@
#ifndef LinkHighlightImpl_h
#define LinkHighlightImpl_h
+#include "platform/animation/CompositorAnimationPlayer.h"
+#include "platform/animation/CompositorAnimationPlayerClient.h"
#include "platform/graphics/LinkHighlight.h"
#include "platform/graphics/Path.h"
#include "platform/heap/Handle.h"
#include "public/platform/WebCompositorAnimationDelegate.h"
-#include "public/platform/WebCompositorAnimationPlayer.h"
-#include "public/platform/WebCompositorAnimationPlayerClient.h"
#include "public/platform/WebContentLayer.h"
#include "public/platform/WebContentLayerClient.h"
#include "wtf/Forward.h"
@@ -49,7 +49,7 @@ class WebViewImpl;
class LinkHighlightImpl final : public LinkHighlight
, public WebContentLayerClient
, public WebCompositorAnimationDelegate
- , public WebCompositorAnimationPlayerClient {
+ , public CompositorAnimationPlayerClient {
public:
static PassOwnPtr<LinkHighlightImpl> create(Node*, WebViewImpl*);
~LinkHighlightImpl() override;
@@ -73,8 +73,8 @@ public:
WebLayer* layer() override;
void clearCurrentGraphicsLayer() override;
- // WebCompositorAnimationPlayerClient implementation.
- WebCompositorAnimationPlayer* compositorPlayer() const override;
+ // CompositorAnimationPlayerClient implementation.
+ CompositorAnimationPlayer* compositorPlayer() const override;
GraphicsLayer* currentGraphicsLayerForTesting() const { return m_currentGraphicsLayer; }
@@ -97,7 +97,7 @@ private:
RefPtrWillBePersistent<Node> m_node;
WebViewImpl* m_owningWebViewImpl;
GraphicsLayer* m_currentGraphicsLayer;
- OwnPtr<WebCompositorAnimationPlayer> m_compositorPlayer;
+ OwnPtr<CompositorAnimationPlayer> m_compositorPlayer;
bool m_geometryNeedsUpdate;
bool m_isAnimating;
« no previous file with comments | « third_party/WebKit/Source/web/ChromeClientImpl.cpp ('k') | third_party/WebKit/Source/web/LinkHighlightImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698