| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 ComputedStyleCSSValueMapping_h | 5 #ifndef ComputedStyleCSSValueMapping_h |
| 6 #define ComputedStyleCSSValueMapping_h | 6 #define ComputedStyleCSSValueMapping_h |
| 7 | 7 |
| 8 #include "core/CSSPropertyNames.h" | 8 #include "core/CSSPropertyNames.h" |
| 9 #include "core/css/CSSValue.h" | 9 #include "core/css/CSSValue.h" |
| 10 | 10 |
| 11 namespace blink { | 11 namespace blink { |
| 12 | 12 |
| 13 class CSSPrimitiveValue; | 13 class CSSPrimitiveValue; |
| 14 class LayoutObject; | 14 class LayoutObject; |
| 15 class ComputedStyle; | 15 class ComputedStyle; |
| 16 class ShadowData; | 16 class ShadowData; |
| 17 class ShadowList; | 17 class ShadowList; |
| 18 class StyleColor; | 18 class StyleColor; |
| 19 class Node; | 19 class Node; |
| 20 | 20 |
| 21 class ComputedStyleCSSValueMapping { | 21 class ComputedStyleCSSValueMapping { |
| 22 public: | 22 public: |
| 23 // FIXME: Resolve computed auto alignment in applyProperty/ComputedStyle and
remove this non-const styledNode parameter. | 23 // FIXME: Resolve computed auto alignment in applyProperty/ComputedStyle and
remove this non-const styledNode parameter. |
| 24 static PassRefPtrWillBeRawPtr<CSSValue> get(CSSPropertyID, const ComputedSty
le&, const LayoutObject* = nullptr, Node* styledNode = nullptr, bool allowVisite
dStyle = false); | 24 static NullableCSSValue get(CSSPropertyID, const ComputedStyle&, const Layou
tObject* = nullptr, Node* styledNode = nullptr, bool allowVisitedStyle = false); |
| 25 private: | 25 private: |
| 26 static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> currentColorOrValidColor(co
nst ComputedStyle&, const StyleColor&); | 26 static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> currentColorOrValidColor(co
nst ComputedStyle&, const StyleColor&); |
| 27 static PassRefPtrWillBeRawPtr<CSSValue> valueForShadowData(const ShadowData&
, const ComputedStyle&, bool useSpread); | 27 static CSSValue valueForShadowData(const ShadowData&, const ComputedStyle&,
bool useSpread); |
| 28 static PassRefPtrWillBeRawPtr<CSSValue> valueForShadowList(const ShadowList*
, const ComputedStyle&, bool useSpread); | 28 static CSSValue valueForShadowList(const ShadowList*, const ComputedStyle&,
bool useSpread); |
| 29 static PassRefPtrWillBeRawPtr<CSSValue> valueForFilter(const ComputedStyle&)
; | 29 static CSSValue valueForFilter(const ComputedStyle&); |
| 30 static PassRefPtrWillBeRawPtr<CSSValue> valueForFont(const ComputedStyle&); | 30 static CSSValue valueForFont(const ComputedStyle&); |
| 31 }; | 31 }; |
| 32 | 32 |
| 33 } // namespace blink | 33 } // namespace blink |
| 34 | 34 |
| 35 #endif // ComputedStyleCSSValueMapping_h | 35 #endif // ComputedStyleCSSValueMapping_h |
| OLD | NEW |