Changeset 127155 in webkit for trunk/Source/WebCore/css/CSSPrimitiveValue.h
- Timestamp:
- Aug 30, 2012, 10:08:00 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/css/CSSPrimitiveValue.h
r124768 r127155 39 39 class Rect; 40 40 class RenderStyle; 41 class CSS WrapShape;41 class CSSBasicShape; 42 42 43 43 struct Length; … … 285 285 DashboardRegion* getDashboardRegionValue() const { return m_primitiveUnitType != CSS_DASHBOARD_REGION ? 0 : m_value.region; } 286 286 287 CSS WrapShape* getShapeValue() const { return m_primitiveUnitType != CSS_SHAPE ? 0 : m_value.shape; }287 CSSBasicShape* getShapeValue() const { return m_primitiveUnitType != CSS_SHAPE ? 0 : m_value.shape; } 288 288 289 289 CSSCalcValue* cssCalcValue() const { return m_primitiveUnitType != CSS_CALC ? 0 : m_value.calc; } … … 341 341 void init(PassRefPtr<Quad>); 342 342 void init(PassRefPtr<DashboardRegion>); // FIXME: Dashboard region should not be a primitive value. 343 void init(PassRefPtr<CSS WrapShape>);343 void init(PassRefPtr<CSSBasicShape>); 344 344 void init(PassRefPtr<CSSCalcValue>); 345 345 bool getDoubleValueInternal(UnitTypes targetUnitType, double* result) const; … … 357 357 Pair* pair; 358 358 DashboardRegion* region; 359 CSS WrapShape* shape;359 CSSBasicShape* shape; 360 360 CSSCalcValue* calc; 361 361 } m_value;
Note:
See TracChangeset
for help on using the changeset viewer.