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

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: Switch to a static const for mixinLevels 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
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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 RefPtrWillBeMember<SMILTimeContainer> m_timeContainer; 165 RefPtrWillBeMember<SMILTimeContainer> m_timeContainer;
166 RefPtrWillBeMember<SVGPoint> m_translation; 166 RefPtrWillBeMember<SVGPoint> m_translation;
167 RefPtrWillBeMember<SVGViewSpec> m_viewSpec; 167 RefPtrWillBeMember<SVGViewSpec> m_viewSpec;
168 168
169 friend class SVGCurrentTranslateTearOff; 169 friend class SVGCurrentTranslateTearOff;
170 }; 170 };
171 171
172 } // namespace blink 172 } // namespace blink
173 173
174 #endif // SVGSVGElement_h 174 #endif // SVGSVGElement_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698