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

Side by Side Diff: third_party/WebKit/Source/core/animation/CSSColorInterpolationType.h

Issue 2940933003: DO NOT SUBMIT results of new clang-format (Closed)
Patch Set: Created 3 years, 6 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 CSSColorInterpolationType_h 5 #ifndef CSSColorInterpolationType_h
6 #define CSSColorInterpolationType_h 6 #define CSSColorInterpolationType_h
7 7
8 #include <memory>
8 #include "core/CSSValueKeywords.h" 9 #include "core/CSSValueKeywords.h"
9 #include "core/animation/CSSInterpolationType.h" 10 #include "core/animation/CSSInterpolationType.h"
10 #include "platform/graphics/Color.h" 11 #include "platform/graphics/Color.h"
11 #include <memory>
12 12
13 namespace blink { 13 namespace blink {
14 14
15 class StyleColor; 15 class StyleColor;
16 struct OptionalStyleColor; 16 struct OptionalStyleColor;
17 17
18 class CSSColorInterpolationType : public CSSInterpolationType { 18 class CSSColorInterpolationType : public CSSInterpolationType {
19 public: 19 public:
20 CSSColorInterpolationType(PropertyHandle property) 20 CSSColorInterpolationType(PropertyHandle property)
21 : CSSInterpolationType(property) {} 21 : CSSInterpolationType(property) {}
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 const OptionalStyleColor&) const; 53 const OptionalStyleColor&) const;
54 54
55 const CSSValue* CreateCSSValue(const InterpolableValue&, 55 const CSSValue* CreateCSSValue(const InterpolableValue&,
56 const NonInterpolableValue*, 56 const NonInterpolableValue*,
57 const StyleResolverState&) const final; 57 const StyleResolverState&) const final;
58 }; 58 };
59 59
60 } // namespace blink 60 } // namespace blink
61 61
62 #endif // CSSColorInterpolationType_h 62 #endif // CSSColorInterpolationType_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698