Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: Source/core/css/CSSBasicShapes.h

Issue 169293002: Oilpan: Remove GC_INFO_{DEFINE,DECLARE} macros (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fixheaptest Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/css/CSSBasicShapes.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/css/CSSBasicShapes.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698