Changeset 237243 in webkit for trunk/Source/WebCore/css/CSSValue.cpp
- Timestamp:
- Oct 17, 2018, 7:47:00 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/css/CSSValue.cpp
r236998 r237243 53 53 #include "CSSLineBoxContainValue.h" 54 54 #include "CSSNamedImageValue.h" 55 #include "CSSPaintImageValue.h" 55 56 #include "CSSPendingSubstitutionValue.h" 56 57 #include "CSSPrimitiveValue.h" … … 152 153 case FilterImageClass: 153 154 return compareCSSValues<CSSFilterImageValue>(*this, other); 155 #if ENABLE(CSS_PAINTING_API) 156 case PaintImageClass: 157 return compareCSSValues<CSSPaintImageValue>(*this, other); 158 #endif 154 159 case FontClass: 155 160 return compareCSSValues<CSSFontValue>(*this, other); … … 248 253 case FilterImageClass: 249 254 return downcast<CSSFilterImageValue>(*this).customCSSText(); 255 #if ENABLE(CSS_PAINTING_API) 256 case PaintImageClass: 257 return downcast<CSSPaintImageValue>(*this).customCSSText(); 258 #endif 250 259 case FontClass: 251 260 return downcast<CSSFontValue>(*this).customCSSText(); … … 433 442 delete downcast<CSSFilterImageValue>(this); 434 443 return; 444 #if ENABLE(CSS_PAINTING_API) 445 case PaintImageClass: 446 delete downcast<CSSPaintImageValue>(this); 447 return; 448 #endif 435 449 case CSSContentDistributionClass: 436 450 delete downcast<CSSContentDistributionValue>(this);
Note:
See TracChangeset
for help on using the changeset viewer.