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

Side by Side Diff: third_party/WebKit/Source/platform/animation/CompositorFloatAnimationCurve.h

Issue 2700123003: DO NOT COMMIT: Results of running old (current) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 CompositorFloatAnimationCurve_h 5 #ifndef CompositorFloatAnimationCurve_h
6 #define CompositorFloatAnimationCurve_h 6 #define CompositorFloatAnimationCurve_h
7 7
8 #include <memory>
8 #include "platform/PlatformExport.h" 9 #include "platform/PlatformExport.h"
9 #include "platform/animation/CompositorAnimationCurve.h" 10 #include "platform/animation/CompositorAnimationCurve.h"
10 #include "platform/animation/CompositorFloatKeyframe.h" 11 #include "platform/animation/CompositorFloatKeyframe.h"
11 #include "platform/animation/TimingFunction.h" 12 #include "platform/animation/TimingFunction.h"
12 #include "wtf/Noncopyable.h" 13 #include "wtf/Noncopyable.h"
13 #include "wtf/PassRefPtr.h" 14 #include "wtf/PassRefPtr.h"
14 #include "wtf/PtrUtil.h" 15 #include "wtf/PtrUtil.h"
15 #include "wtf/Vector.h" 16 #include "wtf/Vector.h"
16 #include <memory>
17 17
18 namespace cc { 18 namespace cc {
19 class KeyframedFloatAnimationCurve; 19 class KeyframedFloatAnimationCurve;
20 } 20 }
21 21
22 namespace blink { 22 namespace blink {
23 class CompositorFloatKeyframe; 23 class CompositorFloatKeyframe;
24 } 24 }
25 25
26 namespace blink { 26 namespace blink {
(...skipping 30 matching lines...) Expand all
57 CompositorFloatAnimationCurve(); 57 CompositorFloatAnimationCurve();
58 CompositorFloatAnimationCurve( 58 CompositorFloatAnimationCurve(
59 std::unique_ptr<cc::KeyframedFloatAnimationCurve>); 59 std::unique_ptr<cc::KeyframedFloatAnimationCurve>);
60 60
61 std::unique_ptr<cc::KeyframedFloatAnimationCurve> m_curve; 61 std::unique_ptr<cc::KeyframedFloatAnimationCurve> m_curve;
62 }; 62 };
63 63
64 } // namespace blink 64 } // namespace blink
65 65
66 #endif // CompositorFloatAnimationCurve_h 66 #endif // CompositorFloatAnimationCurve_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698