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

Unified Diff: third_party/WebKit/Source/core/animation/Animation.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/core/animation/Animation.h
diff --git a/third_party/WebKit/Source/core/animation/Animation.h b/third_party/WebKit/Source/core/animation/Animation.h
index 0d88db13b5c0f721804a0b73182c0bae192caae1..0e4c715b40dd86fbf6b372bfd855530008032a4b 100644
--- a/third_party/WebKit/Source/core/animation/Animation.h
+++ b/third_party/WebKit/Source/core/animation/Animation.h
@@ -39,23 +39,23 @@
#include "core/dom/ActiveDOMObject.h"
#include "core/dom/DOMException.h"
#include "core/events/EventTarget.h"
+#include "platform/animation/CompositorAnimationPlayerClient.h"
#include "platform/heap/Handle.h"
#include "public/platform/WebCompositorAnimationDelegate.h"
-#include "public/platform/WebCompositorAnimationPlayerClient.h"
#include "wtf/RefPtr.h"
namespace blink {
class AnimationTimeline;
+class CompositorAnimationPlayer;
class Element;
class ExceptionState;
-class WebCompositorAnimationPlayer;
class CORE_EXPORT Animation final
: public RefCountedGarbageCollectedEventTargetWithInlineData<Animation>
, public ActiveDOMObject
, public WebCompositorAnimationDelegate
- , public WebCompositorAnimationPlayerClient {
+ , public CompositorAnimationPlayerClient {
DEFINE_WRAPPERTYPEINFO();
REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(Animation);
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Animation);
@@ -158,8 +158,8 @@ public:
void setCompositorPending(bool effectChanged = false);
void notifyCompositorStartTime(double timelineTime);
void notifyStartTime(double timelineTime);
- // WebCompositorAnimationPlayerClient implementation.
- WebCompositorAnimationPlayer* compositorPlayer() const override { return m_compositorPlayer.get(); }
+ // CompositorAnimationPlayerClient implementation.
+ CompositorAnimationPlayer* compositorPlayer() const override { return m_compositorPlayer.get(); }
bool affects(const Element&, CSSPropertyID) const;
@@ -298,7 +298,7 @@ private:
bool m_compositorPending;
int m_compositorGroup;
- OwnPtr<WebCompositorAnimationPlayer> m_compositorPlayer;
+ OwnPtr<CompositorAnimationPlayer> m_compositorPlayer;
bool m_currentTimePending;
bool m_stateIsBeingUpdated;
« no previous file with comments | « content/test/web_layer_tree_view_impl_for_testing.cc ('k') | third_party/WebKit/Source/core/animation/Animation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698