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 CSSPaintDefinition_h | 5 #ifndef CSSPaintDefinition_h |
6 #define CSSPaintDefinition_h | 6 #define CSSPaintDefinition_h |
7 | 7 |
8 #include "bindings/core/v8/ScopedPersistent.h" | |
9 #include "core/CSSPropertyNames.h" | 8 #include "core/CSSPropertyNames.h" |
10 #include "core/css/CSSSyntaxDescriptor.h" | 9 #include "core/css/CSSSyntaxDescriptor.h" |
11 #include "core/css/cssom/CSSStyleValue.h" | 10 #include "core/css/cssom/CSSStyleValue.h" |
| 11 #include "platform/bindings/ScopedPersistent.h" |
12 #include "platform/geometry/IntSize.h" | 12 #include "platform/geometry/IntSize.h" |
13 #include "platform/heap/Handle.h" | 13 #include "platform/heap/Handle.h" |
14 #include "v8/include/v8.h" | 14 #include "v8/include/v8.h" |
15 | 15 |
16 namespace blink { | 16 namespace blink { |
17 | 17 |
18 class Image; | 18 class Image; |
19 class LayoutObject; | 19 class LayoutObject; |
20 class ScriptState; | 20 class ScriptState; |
21 | 21 |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 Vector<CSSPropertyID> native_invalidation_properties_; | 91 Vector<CSSPropertyID> native_invalidation_properties_; |
92 Vector<AtomicString> custom_invalidation_properties_; | 92 Vector<AtomicString> custom_invalidation_properties_; |
93 // Input argument types, if applicable. | 93 // Input argument types, if applicable. |
94 Vector<CSSSyntaxDescriptor> input_argument_types_; | 94 Vector<CSSSyntaxDescriptor> input_argument_types_; |
95 bool has_alpha_; | 95 bool has_alpha_; |
96 }; | 96 }; |
97 | 97 |
98 } // namespace blink | 98 } // namespace blink |
99 | 99 |
100 #endif // CSSPaintDefinition_h | 100 #endif // CSSPaintDefinition_h |
OLD | NEW |