Changeset 156961 in webkit for trunk/Source/WebCore/css/CSSValue.cpp
- Timestamp:
- Oct 5, 2013, 10:06:13 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/css/CSSValue.cpp
r156760 r156961 37 37 #include "CSSFilterImageValue.h" 38 38 #include "CSSFontFaceSrcValue.h" 39 #include "CSSFontValue.h" 39 40 #include "CSSFunctionValue.h" 40 41 #include "CSSGradientValue.h" … … 50 51 #include "CSSUnicodeRangeValue.h" 51 52 #include "CSSValueList.h" 52 #if ENABLE(CSS_VARIABLES)53 #include "CSSVariableValue.h"54 #endif55 #include "FontValue.h"56 53 #include "FontFeatureValue.h" 57 54 #include "ShadowValue.h" … … 65 62 #include "WebKitCSSTransformValue.h" 66 63 64 #if ENABLE(CSS_VARIABLES) 65 #include "CSSVariableValue.h" 66 #endif 67 67 68 #if ENABLE(SVG) 68 69 #include "WebKitCSSSVGDocumentValue.h" … … 179 180 #endif 180 181 case FontClass: 181 return compareCSSValues< FontValue>(*this, other);182 return compareCSSValues<CSSFontValue>(*this, other); 182 183 case FontFaceSrcClass: 183 184 return compareCSSValues<CSSFontFaceSrcValue>(*this, other); … … 281 282 #endif 282 283 case FontClass: 283 return static_cast<const FontValue*>(this)->customCSSText();284 return static_cast<const CSSFontValue*>(this)->customCSSText(); 284 285 case FontFaceSrcClass: 285 286 return static_cast<const CSSFontFaceSrcValue*>(this)->customCSSText(); … … 396 397 return; 397 398 case FontClass: 398 delete static_cast<FontValue*>(this);399 delete toCSSFontValue(this); 399 400 return; 400 401 case FontFaceSrcClass:
Note:
See TracChangeset
for help on using the changeset viewer.