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

Side by Side Diff: Source/core/svg/SVGAElement.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/html/shadow/MediaControlElementTypes.h ('k') | Source/core/svg/SVGImageElement.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, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org>
4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
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 13 matching lines...) Expand all
24 24
25 #include "core/svg/SVGAnimatedBoolean.h" 25 #include "core/svg/SVGAnimatedBoolean.h"
26 #include "core/svg/SVGGraphicsElement.h" 26 #include "core/svg/SVGGraphicsElement.h"
27 #include "core/svg/SVGURIReference.h" 27 #include "core/svg/SVGURIReference.h"
28 28
29 namespace blink { 29 namespace blink {
30 30
31 class SVGAElement final : public SVGGraphicsElement, 31 class SVGAElement final : public SVGGraphicsElement,
32 public SVGURIReference { 32 public SVGURIReference {
33 DEFINE_WRAPPERTYPEINFO(); 33 DEFINE_WRAPPERTYPEINFO();
34 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(SVGAElement); 34 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN_NESTED(SVGAElement, SVGGraphicsElement );
35 public: 35 public:
36 DECLARE_NODE_FACTORY(SVGAElement); 36 DECLARE_NODE_FACTORY(SVGAElement);
37 SVGAnimatedString* svgTarget() { return m_svgTarget.get(); } 37 SVGAnimatedString* svgTarget() { return m_svgTarget.get(); }
38 38
39 DECLARE_VIRTUAL_TRACE(); 39 DECLARE_VIRTUAL_TRACE();
40 40
41 private: 41 private:
42 explicit SVGAElement(Document&); 42 explicit SVGAElement(Document&);
43 43
44 virtual String title() const override; 44 virtual String title() const override;
(...skipping 18 matching lines...) Expand all
63 63
64 virtual bool willRespondToMouseClickEvents() override; 64 virtual bool willRespondToMouseClickEvents() override;
65 65
66 RefPtrWillBeMember<SVGAnimatedString> m_svgTarget; 66 RefPtrWillBeMember<SVGAnimatedString> m_svgTarget;
67 bool m_wasFocusedByMouse; 67 bool m_wasFocusedByMouse;
68 }; 68 };
69 69
70 } // namespace blink 70 } // namespace blink
71 71
72 #endif // SVGAElement_h 72 #endif // SVGAElement_h
OLDNEW
« no previous file with comments | « Source/core/html/shadow/MediaControlElementTypes.h ('k') | Source/core/svg/SVGImageElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698