| OLD | NEW |
| 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 InterpolationEnvironment_h | 5 #ifndef InterpolationEnvironment_h |
| 6 #define InterpolationEnvironment_h | 6 #define InterpolationEnvironment_h |
| 7 | 7 |
| 8 #include "core/animation/InterpolationTypesMap.h" | 8 #include "core/animation/InterpolationTypesMap.h" |
| 9 #include "platform/wtf/Allocator.h" | 9 #include "platform/wtf/Allocator.h" |
| 10 | 10 |
| 11 namespace blink { | 11 namespace blink { |
| 12 | 12 |
| 13 class InterpolationEnvironment { | 13 class InterpolationEnvironment { |
| 14 STACK_ALLOCATED(); | 14 STACK_ALLOCATED(); |
| 15 |
| 15 public: | 16 public: |
| 16 virtual bool IsCSS() const { return false; } | 17 virtual bool IsCSS() const { return false; } |
| 17 virtual bool IsSVG() const { return false; } | 18 virtual bool IsSVG() const { return false; } |
| 18 | 19 |
| 19 const InterpolationTypesMap& GetInterpolationTypesMap() const { | 20 const InterpolationTypesMap& GetInterpolationTypesMap() const { |
| 20 return interpolation_types_map_; | 21 return interpolation_types_map_; |
| 21 } | 22 } |
| 22 | 23 |
| 23 protected: | 24 protected: |
| 24 virtual ~InterpolationEnvironment() {} | 25 virtual ~InterpolationEnvironment() {} |
| 25 | 26 |
| 26 explicit InterpolationEnvironment(const InterpolationTypesMap& map) | 27 explicit InterpolationEnvironment(const InterpolationTypesMap& map) |
| 27 : interpolation_types_map_(map) {} | 28 : interpolation_types_map_(map) {} |
| 28 | 29 |
| 29 private: | 30 private: |
| 30 const InterpolationTypesMap& interpolation_types_map_; | 31 const InterpolationTypesMap& interpolation_types_map_; |
| 31 }; | 32 }; |
| 32 | 33 |
| 33 } // namespace blink | 34 } // namespace blink |
| 34 | 35 |
| 35 #endif // InterpolationEnvironment_h | 36 #endif // InterpolationEnvironment_h |
| OLD | NEW |