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

Side by Side Diff: third_party/WebKit/Source/core/animation/AnimationEffectTiming.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 AnimationEffectTiming_h 5 #ifndef AnimationEffectTiming_h
6 #define AnimationEffectTiming_h 6 #define AnimationEffectTiming_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/animation/AnimationEffectReadOnly.h" 9 #include "core/animation/AnimationEffectReadOnly.h"
10 #include "core/animation/AnimationEffectTimingReadOnly.h" 10 #include "core/animation/AnimationEffectTimingReadOnly.h"
11 #include "wtf/text/WTFString.h" 11 #include "platform/wtf/text/WTFString.h"
12 12
13 namespace blink { 13 namespace blink {
14 14
15 class ExceptionState; 15 class ExceptionState;
16 class UnrestrictedDoubleOrString; 16 class UnrestrictedDoubleOrString;
17 17
18 class CORE_EXPORT AnimationEffectTiming : public AnimationEffectTimingReadOnly { 18 class CORE_EXPORT AnimationEffectTiming : public AnimationEffectTimingReadOnly {
19 DEFINE_WRAPPERTYPEINFO(); 19 DEFINE_WRAPPERTYPEINFO();
20 20
21 public: 21 public:
(...skipping 19 matching lines...) Expand all
41 41
42 DEFINE_TYPE_CASTS(AnimationEffectTiming, 42 DEFINE_TYPE_CASTS(AnimationEffectTiming,
43 AnimationEffectTimingReadOnly, 43 AnimationEffectTimingReadOnly,
44 timing, 44 timing,
45 timing->isAnimationEffectTiming(), 45 timing->isAnimationEffectTiming(),
46 timing.isAnimationEffectTiming()); 46 timing.isAnimationEffectTiming());
47 47
48 } // namespace blink 48 } // namespace blink
49 49
50 #endif 50 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698