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

Side by Side Diff: third_party/WebKit/Source/core/animation/SVGLengthInterpolationType.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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 SVGLengthInterpolationType_h 5 #ifndef SVGLengthInterpolationType_h
6 #define SVGLengthInterpolationType_h 6 #define SVGLengthInterpolationType_h
7 7
8 #include <memory>
8 #include "core/animation/SVGInterpolationType.h" 9 #include "core/animation/SVGInterpolationType.h"
9 #include "core/svg/SVGLength.h" 10 #include "core/svg/SVGLength.h"
10 #include <memory>
11 11
12 namespace blink { 12 namespace blink {
13 13
14 class SVGLengthContext; 14 class SVGLengthContext;
15 enum class SVGLengthMode; 15 enum class SVGLengthMode;
16 16
17 class SVGLengthInterpolationType : public SVGInterpolationType { 17 class SVGLengthInterpolationType : public SVGInterpolationType {
18 public: 18 public:
19 SVGLengthInterpolationType(const QualifiedName& attribute) 19 SVGLengthInterpolationType(const QualifiedName& attribute)
20 : SVGInterpolationType(attribute), 20 : SVGInterpolationType(attribute),
(...skipping 20 matching lines...) Expand all
41 const NonInterpolableValue*, 41 const NonInterpolableValue*,
42 InterpolationEnvironment&) const final; 42 InterpolationEnvironment&) const final;
43 43
44 const SVGLengthMode m_unitMode; 44 const SVGLengthMode m_unitMode;
45 const bool m_negativeValuesForbidden; 45 const bool m_negativeValuesForbidden;
46 }; 46 };
47 47
48 } // namespace blink 48 } // namespace blink
49 49
50 #endif // SVGLengthInterpolationType_h 50 #endif // SVGLengthInterpolationType_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698