Chromium Code Reviews| 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 CSSPaintValue_h | 5 #ifndef CSSPaintValue_h |
| 6 #define CSSPaintValue_h | 6 #define CSSPaintValue_h |
| 7 | 7 |
| 8 #include "core/css/CSSCustomIdentValue.h" | 8 #include "core/css/CSSCustomIdentValue.h" |
| 9 #include "core/css/CSSImageGeneratorValue.h" | 9 #include "core/css/CSSImageGeneratorValue.h" |
| 10 #include "core/css/CSSPaintImageGenerator.h" | 10 #include "core/css/CSSPaintImageGenerator.h" |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 72 | 72 |
| 73 private: | 73 private: |
| 74 Member<CSSPaintValue> m_ownerValue; | 74 Member<CSSPaintValue> m_ownerValue; |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 void paintImageGeneratorReady(); | 77 void paintImageGeneratorReady(); |
| 78 | 78 |
| 79 Member<CSSCustomIdentValue> m_name; | 79 Member<CSSCustomIdentValue> m_name; |
| 80 Member<CSSPaintImageGenerator> m_generator; | 80 Member<CSSPaintImageGenerator> m_generator; |
| 81 Member<Observer> m_paintImageGeneratorObserver; | 81 Member<Observer> m_paintImageGeneratorObserver; |
| 82 Member<CSSStyleValueVector> m_parsedInputArguments; | |
|
meade_UTC10
2017/02/17 07:09:37
Sorry if I mislead you when we had our chat earlie
renjieliu1
2017/02/19 04:39:14
If I don't put it into member, the compiler tells
| |
| 82 Vector<RefPtr<CSSVariableData>> m_argumentVariableData; | 83 Vector<RefPtr<CSSVariableData>> m_argumentVariableData; |
| 83 }; | 84 }; |
| 84 | 85 |
| 85 DEFINE_CSS_VALUE_TYPE_CASTS(CSSPaintValue, isPaintValue()); | 86 DEFINE_CSS_VALUE_TYPE_CASTS(CSSPaintValue, isPaintValue()); |
| 86 | 87 |
| 87 } // namespace blink | 88 } // namespace blink |
| 88 | 89 |
| 89 #endif // CSSPaintValue_h | 90 #endif // CSSPaintValue_h |
| OLD | NEW |