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

Side by Side Diff: third_party/WebKit/Source/core/svg/SVGForeignObjectElement.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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) 2006 Apple Inc. All rights reserved. 2 * Copyright (C) 2006 Apple Inc. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 bool isPresentationAttribute(const QualifiedName&) const override; 47 bool isPresentationAttribute(const QualifiedName&) const override;
48 bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const override; 48 bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const override;
49 void collectStyleForPresentationAttribute(const QualifiedName&, const Atomic String&, MutableStylePropertySet*) override; 49 void collectStyleForPresentationAttribute(const QualifiedName&, const Atomic String&, MutableStylePropertySet*) override;
50 void svgAttributeChanged(const QualifiedName&) override; 50 void svgAttributeChanged(const QualifiedName&) override;
51 51
52 bool layoutObjectIsNeeded(const ComputedStyle&) override; 52 bool layoutObjectIsNeeded(const ComputedStyle&) override;
53 LayoutObject* createLayoutObject(const ComputedStyle&) override; 53 LayoutObject* createLayoutObject(const ComputedStyle&) override;
54 54
55 bool selfHasRelativeLengths() const override; 55 bool selfHasRelativeLengths() const override;
56 56
57 RefPtrWillBeMember<SVGAnimatedLength> m_x; 57 Member<SVGAnimatedLength> m_x;
58 RefPtrWillBeMember<SVGAnimatedLength> m_y; 58 Member<SVGAnimatedLength> m_y;
59 RefPtrWillBeMember<SVGAnimatedLength> m_width; 59 Member<SVGAnimatedLength> m_width;
60 RefPtrWillBeMember<SVGAnimatedLength> m_height; 60 Member<SVGAnimatedLength> m_height;
61 }; 61 };
62 62
63 } // namespace blink 63 } // namespace blink
64 64
65 #endif // SVGForeignObjectElement_h 65 #endif // SVGForeignObjectElement_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGFitToViewBox.cpp ('k') | third_party/WebKit/Source/core/svg/SVGGeometryElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698