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

Side by Side Diff: Source/core/svg/SVGSVGElement.h

Issue 980653002: Oilpan: disable conservative GCs during initial GC mixin construction. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add GC mixin test Created 5 years, 9 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
« no previous file with comments | « Source/core/svg/SVGImageElement.h ('k') | Source/core/svg/SVGTextPathElement.h » ('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) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Rob Buis <buis@kde.org>
4 * Copyright (C) 2014 Google, Inc. 4 * Copyright (C) 2014 Google, Inc.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 27 matching lines...) Expand all
38 class SVGNumberTearOff; 38 class SVGNumberTearOff;
39 class SVGTransformTearOff; 39 class SVGTransformTearOff;
40 class SVGViewSpec; 40 class SVGViewSpec;
41 class SVGViewElement; 41 class SVGViewElement;
42 class SMILTimeContainer; 42 class SMILTimeContainer;
43 43
44 class SVGSVGElement final : public SVGGraphicsElement, 44 class SVGSVGElement final : public SVGGraphicsElement,
45 public SVGFitToViewBox, 45 public SVGFitToViewBox,
46 public SVGZoomAndPan { 46 public SVGZoomAndPan {
47 DEFINE_WRAPPERTYPEINFO(); 47 DEFINE_WRAPPERTYPEINFO();
48 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SVGSVGElement); 48 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN_NESTED(SVGSVGElement, SVGGraphicsEleme nt);
49 public: 49 public:
50 DECLARE_NODE_FACTORY(SVGSVGElement); 50 DECLARE_NODE_FACTORY(SVGSVGElement);
51 51
52 #if !ENABLE(OILPAN) 52 #if !ENABLE(OILPAN)
53 using SVGGraphicsElement::ref; 53 using SVGGraphicsElement::ref;
54 using SVGGraphicsElement::deref; 54 using SVGGraphicsElement::deref;
55 #endif 55 #endif
56 56
57 // 'SVGSVGElement' functions 57 // 'SVGSVGElement' functions
58 PassRefPtrWillBeRawPtr<SVGRectTearOff> viewport() const; 58 PassRefPtrWillBeRawPtr<SVGRectTearOff> viewport() const;
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 RefPtrWillBeMember<SMILTimeContainer> m_timeContainer; 166 RefPtrWillBeMember<SMILTimeContainer> m_timeContainer;
167 RefPtrWillBeMember<SVGPoint> m_translation; 167 RefPtrWillBeMember<SVGPoint> m_translation;
168 RefPtrWillBeMember<SVGViewSpec> m_viewSpec; 168 RefPtrWillBeMember<SVGViewSpec> m_viewSpec;
169 169
170 friend class SVGCurrentTranslateTearOff; 170 friend class SVGCurrentTranslateTearOff;
171 }; 171 };
172 172
173 } // namespace blink 173 } // namespace blink
174 174
175 #endif // SVGSVGElement_h 175 #endif // SVGSVGElement_h
OLDNEW
« no previous file with comments | « Source/core/svg/SVGImageElement.h ('k') | Source/core/svg/SVGTextPathElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698