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

Side by Side Diff: third_party/WebKit/Source/core/animation/TimingInput.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 TimingInput_h 5 #ifndef TimingInput_h
6 #define TimingInput_h 6 #define TimingInput_h
7 7
8 #include "core/CoreExport.h" 8 #include "core/CoreExport.h"
9 #include "core/animation/Timing.h" 9 #include "core/animation/Timing.h"
10 #include "wtf/Allocator.h" 10 #include "platform/wtf/Allocator.h"
11 11
12 namespace blink { 12 namespace blink {
13 13
14 class Document; 14 class Document;
15 class ExceptionState; 15 class ExceptionState;
16 class KeyframeEffectOptions; 16 class KeyframeEffectOptions;
17 class UnrestrictedDoubleOrString; 17 class UnrestrictedDoubleOrString;
18 18
19 class CORE_EXPORT TimingInput { 19 class CORE_EXPORT TimingInput {
20 STATIC_ONLY(TimingInput); 20 STATIC_ONLY(TimingInput);
(...skipping 21 matching lines...) Expand all
42 static void setPlaybackDirection(Timing&, const String& direction); 42 static void setPlaybackDirection(Timing&, const String& direction);
43 static bool setTimingFunction(Timing&, 43 static bool setTimingFunction(Timing&,
44 const String& timingFunctionString, 44 const String& timingFunctionString,
45 Document*, 45 Document*,
46 ExceptionState&); 46 ExceptionState&);
47 }; 47 };
48 48
49 } // namespace blink 49 } // namespace blink
50 50
51 #endif 51 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698