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

Side by Side Diff: third_party/WebKit/Source/core/animation/AnimationEffect.h

Issue 1882003002: include RefCounted.h where needed, only. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile fix Created 4 years, 8 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/animation/Interpolation.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 17 matching lines...) Expand all
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef AnimationEffect_h 31 #ifndef AnimationEffect_h
32 #define AnimationEffect_h 32 #define AnimationEffect_h
33 33
34 #include "bindings/core/v8/ScriptWrappable.h" 34 #include "bindings/core/v8/ScriptWrappable.h"
35 #include "core/CoreExport.h" 35 #include "core/CoreExport.h"
36 #include "core/animation/Timing.h" 36 #include "core/animation/Timing.h"
37 #include "platform/heap/Handle.h" 37 #include "platform/heap/Handle.h"
38 #include "wtf/OwnPtr.h"
39 #include "wtf/PassOwnPtr.h"
40 #include "wtf/RefCounted.h"
41 38
42 namespace blink { 39 namespace blink {
43 40
44 class Animation; 41 class Animation;
45 class AnimationEffect; 42 class AnimationEffect;
46 class AnimationEffectTiming; 43 class AnimationEffectTiming;
47 class ComputedTimingProperties; 44 class ComputedTimingProperties;
48 45
49 enum TimingUpdateReason { 46 enum TimingUpdateReason {
50 TimingUpdateOnDemand, 47 TimingUpdateOnDemand,
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 mutable bool m_needsUpdate; 156 mutable bool m_needsUpdate;
160 mutable double m_lastUpdateTime; 157 mutable double m_lastUpdateTime;
161 String m_name; 158 String m_name;
162 159
163 const CalculatedTiming& ensureCalculated() const; 160 const CalculatedTiming& ensureCalculated() const;
164 }; 161 };
165 162
166 } // namespace blink 163 } // namespace blink
167 164
168 #endif // AnimationEffect_h 165 #endif // AnimationEffect_h
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/animation/Interpolation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698