OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011, 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2011, 2012 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 class CORE_EXPORT CSSValuePool : public NoBaseWillBeGarbageCollectedFinalized<C
SSValuePool> { | 44 class CORE_EXPORT CSSValuePool : public NoBaseWillBeGarbageCollectedFinalized<C
SSValuePool> { |
45 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(CSSValuePool); | 45 WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(CSSValuePool); |
46 public: | 46 public: |
47 PassRefPtrWillBeRawPtr<CSSValueList> createFontFaceValue(const AtomicString&
); | 47 PassRefPtrWillBeRawPtr<CSSValueList> createFontFaceValue(const AtomicString&
); |
48 PassRefPtrWillBeRawPtr<CSSCustomIdentValue> createFontFamilyValue(const Stri
ng&); | 48 PassRefPtrWillBeRawPtr<CSSCustomIdentValue> createFontFamilyValue(const Stri
ng&); |
49 PassRefPtrWillBeRawPtr<CSSInheritedValue> createInheritedValue() { return m_
inheritedValue; } | 49 PassRefPtrWillBeRawPtr<CSSInheritedValue> createInheritedValue() { return m_
inheritedValue; } |
50 PassRefPtrWillBeRawPtr<CSSInitialValue> createImplicitInitialValue() { retur
n m_implicitInitialValue; } | 50 PassRefPtrWillBeRawPtr<CSSInitialValue> createImplicitInitialValue() { retur
n m_implicitInitialValue; } |
51 PassRefPtrWillBeRawPtr<CSSInitialValue> createExplicitInitialValue() { retur
n m_explicitInitialValue; } | 51 PassRefPtrWillBeRawPtr<CSSInitialValue> createExplicitInitialValue() { retur
n m_explicitInitialValue; } |
52 PassRefPtrWillBeRawPtr<CSSUnsetValue> createUnsetValue() { return m_unsetVal
ue; } | 52 PassRefPtrWillBeRawPtr<CSSUnsetValue> createUnsetValue() { return m_unsetVal
ue; } |
53 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createIdentifierValue(CSSValueID i
dentifier); | 53 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createIdentifierValue(CSSValueID i
dentifier); |
54 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createIdentifierValue(CSSPropertyI
D identifier); | 54 PassRefPtrWillBeRawPtr<CSSCustomIdentValue> createIdentifierValue(CSSPropert
yID identifier); |
55 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createColorValue(unsigned rgbValue
); | 55 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createColorValue(unsigned rgbValue
); |
56 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createValue(double value, CSSPrimi
tiveValue::UnitType); | 56 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createValue(double value, CSSPrimi
tiveValue::UnitType); |
57 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createValue(const Length& value, c
onst ComputedStyle&); | 57 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createValue(const Length& value, c
onst ComputedStyle&); |
58 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createValue(const Length& value, f
loat zoom) { return CSSPrimitiveValue::create(value, zoom); } | 58 PassRefPtrWillBeRawPtr<CSSPrimitiveValue> createValue(const Length& value, f
loat zoom) { return CSSPrimitiveValue::create(value, zoom); } |
59 template<typename T> static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> create
Value(T value) { return CSSPrimitiveValue::create(value); } | 59 template<typename T> static PassRefPtrWillBeRawPtr<CSSPrimitiveValue> create
Value(T value) { return CSSPrimitiveValue::create(value); } |
60 | 60 |
61 DECLARE_TRACE(); | 61 DECLARE_TRACE(); |
62 | 62 |
63 private: | 63 private: |
64 CSSValuePool(); | 64 CSSValuePool(); |
(...skipping 24 matching lines...) Expand all Loading... |
89 FontFamilyValueCache m_fontFamilyValueCache; | 89 FontFamilyValueCache m_fontFamilyValueCache; |
90 | 90 |
91 friend CORE_EXPORT CSSValuePool& cssValuePool(); | 91 friend CORE_EXPORT CSSValuePool& cssValuePool(); |
92 }; | 92 }; |
93 | 93 |
94 CORE_EXPORT CSSValuePool& cssValuePool(); | 94 CORE_EXPORT CSSValuePool& cssValuePool(); |
95 | 95 |
96 } | 96 } |
97 | 97 |
98 #endif | 98 #endif |
OLD | NEW |