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

Side by Side Diff: third_party/WebKit/Source/core/animation/css/CSSTimingData.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 CSSTimingData_h 5 #ifndef CSSTimingData_h
6 #define CSSTimingData_h 6 #define CSSTimingData_h
7 7
8 #include "platform/animation/TimingFunction.h" 8 #include "platform/animation/TimingFunction.h"
9 #include "platform/heap/Handle.h" 9 #include "platform/heap/Handle.h"
10 #include "wtf/Allocator.h" 10 #include "platform/wtf/Allocator.h"
11 #include "wtf/Vector.h" 11 #include "platform/wtf/Vector.h"
12 12
13 namespace blink { 13 namespace blink {
14 14
15 struct Timing; 15 struct Timing;
16 16
17 class CSSTimingData { 17 class CSSTimingData {
18 USING_FAST_MALLOC(CSSTimingData); 18 USING_FAST_MALLOC(CSSTimingData);
19 19
20 public: 20 public:
21 ~CSSTimingData() {} 21 ~CSSTimingData() {}
(...skipping 30 matching lines...) Expand all
52 52
53 private: 53 private:
54 Vector<double> m_delayList; 54 Vector<double> m_delayList;
55 Vector<double> m_durationList; 55 Vector<double> m_durationList;
56 Vector<RefPtr<TimingFunction>> m_timingFunctionList; 56 Vector<RefPtr<TimingFunction>> m_timingFunctionList;
57 }; 57 };
58 58
59 } // namespace blink 59 } // namespace blink
60 60
61 #endif // CSSTimingData_h 61 #endif // CSSTimingData_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698