| OLD | NEW |
| 1 // Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 CSSContentDistributionValue_h | 5 #ifndef CSSContentDistributionValue_h |
| 6 #define CSSContentDistributionValue_h | 6 #define CSSContentDistributionValue_h |
| 7 | 7 |
| 8 #include "core/css/CSSValue.h" | 8 #include "core/css/CSSValue.h" |
| 9 #include "core/css/CSSValuePool.h" | 9 #include "core/css/CSSValuePool.h" |
| 10 #include "wtf/RefPtr.h" | 10 #include "wtf/RefPtr.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 class CSSContentDistributionValue : public CSSValue { | 14 class CSSContentDistributionValue : public CSSValue { |
| 15 public: | 15 public: |
| 16 static PassRefPtrWillBeRawPtr<CSSContentDistributionValue> create(CSSValueID
distribution, CSSValueID position, CSSValueID overflow) | 16 static PassRefPtr<CSSContentDistributionValue> create(CSSValueID distributio
n, CSSValueID position, CSSValueID overflow) |
| 17 { | 17 { |
| 18 return adoptRefWillBeNoop(new CSSContentDistributionValue(distribution,
position, overflow)); | 18 return adoptRef(new CSSContentDistributionValue(distribution, position,
overflow)); |
| 19 } | 19 } |
| 20 ~CSSContentDistributionValue(); | 20 ~CSSContentDistributionValue(); |
| 21 | 21 |
| 22 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> distribution() const { return cssV
aluePool().createIdentifierValue(m_distribution); } | 22 PassRefPtr<CSSPrimitiveValue> distribution() const { return cssValuePool().c
reateIdentifierValue(m_distribution); } |
| 23 | 23 |
| 24 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> position() const { return cssValue
Pool().createIdentifierValue(m_position); } | 24 PassRefPtr<CSSPrimitiveValue> position() const { return cssValuePool().creat
eIdentifierValue(m_position); } |
| 25 | 25 |
| 26 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> overflow() const { return cssValue
Pool().createIdentifierValue(m_overflow); } | 26 PassRefPtr<CSSPrimitiveValue> overflow() const { return cssValuePool().creat
eIdentifierValue(m_overflow); } |
| 27 | 27 |
| 28 String customCSSText() const; | 28 String customCSSText() const; |
| 29 | 29 |
| 30 bool equals(const CSSContentDistributionValue&) const; | 30 bool equals(const CSSContentDistributionValue&) const; |
| 31 | 31 |
| 32 DEFINE_INLINE_TRACE_AFTER_DISPATCH() { CSSValue::traceAfterDispatch(visitor)
; } | |
| 33 | |
| 34 private: | 32 private: |
| 35 CSSContentDistributionValue(CSSValueID distribution, CSSValueID position, CS
SValueID overflow); | 33 CSSContentDistributionValue(CSSValueID distribution, CSSValueID position, CS
SValueID overflow); |
| 36 | 34 |
| 37 CSSValueID m_distribution; | 35 CSSValueID m_distribution; |
| 38 CSSValueID m_position; | 36 CSSValueID m_position; |
| 39 CSSValueID m_overflow; | 37 CSSValueID m_overflow; |
| 40 }; | 38 }; |
| 41 | 39 |
| 42 DEFINE_CSS_VALUE_TYPE_CASTS(CSSContentDistributionValue, isContentDistributionVa
lue()); | 40 DEFINE_CSS_VALUE_TYPE_CASTS(CSSContentDistributionValue, isContentDistributionVa
lue()); |
| 43 | 41 |
| 44 } // namespace blink | 42 } // namespace blink |
| 45 | 43 |
| 46 #endif // CSSContentDistributionValue_h | 44 #endif // CSSContentDistributionValue_h |
| OLD | NEW |