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

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

Issue 2798393005: Rewrite references to "wtf/" to "platform/wtf/" in core/animation. (Closed)
Patch Set: Created 3 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef SampledEffect_h 5 #ifndef SampledEffect_h
6 #define SampledEffect_h 6 #define SampledEffect_h
7 7
8 #include "core/animation/Animation.h" 8 #include "core/animation/Animation.h"
9 #include "core/animation/Interpolation.h" 9 #include "core/animation/Interpolation.h"
10 #include "core/animation/KeyframeEffectReadOnly.h" 10 #include "core/animation/KeyframeEffectReadOnly.h"
11 #include "wtf/Allocator.h" 11 #include "platform/wtf/Allocator.h"
12 #include "wtf/Vector.h" 12 #include "platform/wtf/Vector.h"
13 13
14 namespace blink { 14 namespace blink {
15 15
16 // Associates the results of sampling an EffectModel with metadata used for 16 // Associates the results of sampling an EffectModel with metadata used for
17 // effect ordering and managing composited animations. 17 // effect ordering and managing composited animations.
18 class SampledEffect : public GarbageCollectedFinalized<SampledEffect> { 18 class SampledEffect : public GarbageCollectedFinalized<SampledEffect> {
19 WTF_MAKE_NONCOPYABLE(SampledEffect); 19 WTF_MAKE_NONCOPYABLE(SampledEffect);
20 20
21 public: 21 public:
22 static SampledEffect* create(KeyframeEffectReadOnly* animation) { 22 static SampledEffect* create(KeyframeEffectReadOnly* animation) {
(...skipping 23 matching lines...) Expand all
46 46
47 WeakMember<KeyframeEffectReadOnly> m_effect; 47 WeakMember<KeyframeEffectReadOnly> m_effect;
48 Vector<RefPtr<Interpolation>> m_interpolations; 48 Vector<RefPtr<Interpolation>> m_interpolations;
49 const unsigned m_sequenceNumber; 49 const unsigned m_sequenceNumber;
50 KeyframeEffectReadOnly::Priority m_priority; 50 KeyframeEffectReadOnly::Priority m_priority;
51 }; 51 };
52 52
53 } // namespace blink 53 } // namespace blink
54 54
55 #endif // SampledEffect_h 55 #endif // SampledEffect_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698