OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Adobe Systems Incorporated. All rights reserved. | 2 * Copyright (C) 2011 Adobe Systems Incorporated. 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 * | 7 * |
8 * 1. Redistributions of source code must retain the above | 8 * 1. Redistributions of source code must retain the above |
9 * copyright notice, this list of conditions and the following | 9 * copyright notice, this list of conditions and the following |
10 * disclaimer. | 10 * disclaimer. |
(...skipping 21 matching lines...) Expand all Loading... |
32 | 32 |
33 #include "core/css/CSSPrimitiveValue.h" | 33 #include "core/css/CSSPrimitiveValue.h" |
34 #include "platform/graphics/WindRule.h" | 34 #include "platform/graphics/WindRule.h" |
35 #include "wtf/RefPtr.h" | 35 #include "wtf/RefPtr.h" |
36 #include "wtf/Vector.h" | 36 #include "wtf/Vector.h" |
37 #include "wtf/text/WTFString.h" | 37 #include "wtf/text/WTFString.h" |
38 | 38 |
39 namespace WebCore { | 39 namespace WebCore { |
40 | 40 |
41 class CSSBasicShape : public RefCountedWillBeGarbageCollected<CSSBasicShape> { | 41 class CSSBasicShape : public RefCountedWillBeGarbageCollected<CSSBasicShape> { |
42 DECLARE_GC_INFO; | |
43 public: | 42 public: |
44 enum Type { | 43 enum Type { |
45 CSSBasicShapeRectangleType, | 44 CSSBasicShapeRectangleType, |
46 CSSDeprecatedBasicShapeCircleType, | 45 CSSDeprecatedBasicShapeCircleType, |
47 CSSDeprecatedBasicShapeEllipseType, | 46 CSSDeprecatedBasicShapeEllipseType, |
48 CSSBasicShapeEllipseType, | 47 CSSBasicShapeEllipseType, |
49 CSSBasicShapePolygonType, | 48 CSSBasicShapePolygonType, |
50 CSSBasicShapeInsetRectangleType, | 49 CSSBasicShapeInsetRectangleType, |
51 CSSBasicShapeCircleType, | 50 CSSBasicShapeCircleType, |
52 CSSBasicShapeInsetType | 51 CSSBasicShapeInsetType |
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
347 | 346 |
348 RefPtrWillBeMember<CSSPrimitiveValue> m_topLeftRadius; | 347 RefPtrWillBeMember<CSSPrimitiveValue> m_topLeftRadius; |
349 RefPtrWillBeMember<CSSPrimitiveValue> m_topRightRadius; | 348 RefPtrWillBeMember<CSSPrimitiveValue> m_topRightRadius; |
350 RefPtrWillBeMember<CSSPrimitiveValue> m_bottomRightRadius; | 349 RefPtrWillBeMember<CSSPrimitiveValue> m_bottomRightRadius; |
351 RefPtrWillBeMember<CSSPrimitiveValue> m_bottomLeftRadius; | 350 RefPtrWillBeMember<CSSPrimitiveValue> m_bottomLeftRadius; |
352 }; | 351 }; |
353 | 352 |
354 } // namespace WebCore | 353 } // namespace WebCore |
355 | 354 |
356 #endif // CSSBasicShapes_h | 355 #endif // CSSBasicShapes_h |
OLD | NEW |