Changeset 127220 in webkit for trunk/Source/WebCore/css/CSSCalculationValue.h
- Timestamp:
- Aug 30, 2012, 6:13:50 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/css/CSSCalculationValue.h
r124768 r127220 53 53 CalcPercentNumber, 54 54 CalcPercentLength, 55 #if ENABLE(CSS_VARIABLES) 56 CalcVariable, 57 #endif 55 58 CalcOther 56 59 }; … … 65 68 virtual double computeLengthPx(RenderStyle* currentStyle, RenderStyle* rootStyle, double multiplier = 1.0, bool computingFontSize = false) const = 0; 66 69 virtual String customCssText() const = 0; 70 #if ENABLE(CSS_VARIABLES) 71 virtual String serializeResolvingVariables(const HashMap<AtomicString, String>&) const = 0; 72 virtual bool hasVariableReference() const = 0; 73 #endif 67 74 68 75 virtual void reportMemoryUsage(MemoryObjectInfo*) const = 0; … … 98 105 99 106 String customCssText() const; 107 #if ENABLE(CSS_VARIABLES) 108 String customSerializeResolvingVariables(const HashMap<AtomicString, String>&) const; 109 bool hasVariableReference() const; 110 #endif 100 111 101 112 void reportDescendantMemoryUsage(MemoryObjectInfo*) const;
Note:
See TracChangeset
for help on using the changeset viewer.