| OLD | NEW |
| 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 PropertyRegistration_h | 5 #ifndef PropertyRegistration_h |
| 6 #define PropertyRegistration_h | 6 #define PropertyRegistration_h |
| 7 | 7 |
| 8 #include "core/animation/CSSInterpolationType.h" | 8 #include "core/animation/CSSInterpolationType.h" |
| 9 #include "core/animation/InterpolationTypesMap.h" | 9 #include "core/animation/InterpolationTypesMap.h" |
| 10 #include "core/css/CSSSyntaxDescriptor.h" | 10 #include "core/css/CSSSyntaxDescriptor.h" |
| 11 #include "core/css/CSSValue.h" | 11 #include "core/css/CSSValue.h" |
| 12 #include "core/css/CSSVariableData.h" | 12 #include "core/css/CSSVariableData.h" |
| 13 #include "wtf/Allocator.h" | 13 #include "platform/wtf/Allocator.h" |
| 14 #include "wtf/RefPtr.h" | 14 #include "platform/wtf/RefPtr.h" |
| 15 #include "wtf/text/WTFString.h" | 15 #include "platform/wtf/text/WTFString.h" |
| 16 | 16 |
| 17 namespace blink { | 17 namespace blink { |
| 18 | 18 |
| 19 class ExceptionState; | 19 class ExceptionState; |
| 20 class ExecutionContext; | 20 class ExecutionContext; |
| 21 class PropertyDescriptor; | 21 class PropertyDescriptor; |
| 22 | 22 |
| 23 using CSSInterpolationTypes = Vector<std::unique_ptr<CSSInterpolationType>>; | 23 using CSSInterpolationTypes = Vector<std::unique_ptr<CSSInterpolationType>>; |
| 24 | 24 |
| 25 class CORE_EXPORT PropertyRegistration | 25 class CORE_EXPORT PropertyRegistration |
| (...skipping 25 matching lines...) Expand all Loading... |
| 51 const CSSSyntaxDescriptor syntax_; | 51 const CSSSyntaxDescriptor syntax_; |
| 52 const bool inherits_; | 52 const bool inherits_; |
| 53 const Member<const CSSValue> initial_; | 53 const Member<const CSSValue> initial_; |
| 54 const RefPtr<CSSVariableData> initial_variable_data_; | 54 const RefPtr<CSSVariableData> initial_variable_data_; |
| 55 const InterpolationTypes interpolation_types_; | 55 const InterpolationTypes interpolation_types_; |
| 56 }; | 56 }; |
| 57 | 57 |
| 58 } // namespace blink | 58 } // namespace blink |
| 59 | 59 |
| 60 #endif // PropertyRegistration_h | 60 #endif // PropertyRegistration_h |
| OLD | NEW |