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

Side by Side 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: Fix ScrollAnimatorCompositorCoordinator for MSVC. 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 21 matching lines...) Expand all
32 #define Animation_h 32 #define Animation_h
33 33
34 #include "bindings/core/v8/ScriptPromise.h" 34 #include "bindings/core/v8/ScriptPromise.h"
35 #include "bindings/core/v8/ScriptPromiseProperty.h" 35 #include "bindings/core/v8/ScriptPromiseProperty.h"
36 #include "core/CSSPropertyNames.h" 36 #include "core/CSSPropertyNames.h"
37 #include "core/CoreExport.h" 37 #include "core/CoreExport.h"
38 #include "core/animation/AnimationEffect.h" 38 #include "core/animation/AnimationEffect.h"
39 #include "core/dom/ActiveDOMObject.h" 39 #include "core/dom/ActiveDOMObject.h"
40 #include "core/dom/DOMException.h" 40 #include "core/dom/DOMException.h"
41 #include "core/events/EventTarget.h" 41 #include "core/events/EventTarget.h"
42 #include "platform/animation/WebCompositorAnimationPlayerClient.h"
42 #include "platform/heap/Handle.h" 43 #include "platform/heap/Handle.h"
43 #include "public/platform/WebCompositorAnimationDelegate.h" 44 #include "public/platform/WebCompositorAnimationDelegate.h"
44 #include "public/platform/WebCompositorAnimationPlayerClient.h"
45 #include "wtf/RefPtr.h" 45 #include "wtf/RefPtr.h"
46 46
47 namespace blink { 47 namespace blink {
48 48
49 class AnimationTimeline; 49 class AnimationTimeline;
50 class Element; 50 class Element;
51 class ExceptionState; 51 class ExceptionState;
52 class WebCompositorAnimationPlayer; 52 class WebCompositorAnimationPlayer;
53 53
54 class CORE_EXPORT Animation final 54 class CORE_EXPORT Animation final
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 300
301 OwnPtr<WebCompositorAnimationPlayer> m_compositorPlayer; 301 OwnPtr<WebCompositorAnimationPlayer> m_compositorPlayer;
302 302
303 bool m_currentTimePending; 303 bool m_currentTimePending;
304 bool m_stateIsBeingUpdated; 304 bool m_stateIsBeingUpdated;
305 }; 305 };
306 306
307 } // namespace blink 307 } // namespace blink
308 308
309 #endif // Animation_h 309 #endif // Animation_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698