OLD | NEW |
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 28 matching lines...) Expand all Loading... |
39 class SVGViewSpec; | 39 class SVGViewSpec; |
40 class SVGViewElement; | 40 class SVGViewElement; |
41 class SMILTimeContainer; | 41 class SMILTimeContainer; |
42 | 42 |
43 class SVGSVGElement FINAL : public SVGGraphicsElement, | 43 class SVGSVGElement FINAL : public SVGGraphicsElement, |
44 public SVGFitToViewBox, | 44 public SVGFitToViewBox, |
45 public SVGZoomAndPan { | 45 public SVGZoomAndPan { |
46 public: | 46 public: |
47 DECLARE_NODE_FACTORY(SVGSVGElement); | 47 DECLARE_NODE_FACTORY(SVGSVGElement); |
48 | 48 |
| 49 #if !ENABLE(OILPAN) |
49 using SVGGraphicsElement::ref; | 50 using SVGGraphicsElement::ref; |
50 using SVGGraphicsElement::deref; | 51 using SVGGraphicsElement::deref; |
| 52 #endif |
51 | 53 |
52 // 'SVGSVGElement' functions | 54 // 'SVGSVGElement' functions |
53 PassRefPtr<SVGRectTearOff> viewport() const; | 55 PassRefPtr<SVGRectTearOff> viewport() const; |
54 | 56 |
55 float pixelUnitToMillimeterX() const; | 57 float pixelUnitToMillimeterX() const; |
56 float pixelUnitToMillimeterY() const; | 58 float pixelUnitToMillimeterY() const; |
57 float screenPixelToMillimeterX() const; | 59 float screenPixelToMillimeterX() const; |
58 float screenPixelToMillimeterY() const; | 60 float screenPixelToMillimeterY() const; |
59 | 61 |
60 bool useCurrentView() const { return m_useCurrentView; } | 62 bool useCurrentView() const { return m_useCurrentView; } |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 RefPtrWillBeMember<SMILTimeContainer> m_timeContainer; | 161 RefPtrWillBeMember<SMILTimeContainer> m_timeContainer; |
160 RefPtr<SVGPoint> m_translation; | 162 RefPtr<SVGPoint> m_translation; |
161 RefPtrWillBeMember<SVGViewSpec> m_viewSpec; | 163 RefPtrWillBeMember<SVGViewSpec> m_viewSpec; |
162 | 164 |
163 friend class SVGCurrentTranslateTearOff; | 165 friend class SVGCurrentTranslateTearOff; |
164 }; | 166 }; |
165 | 167 |
166 } // namespace WebCore | 168 } // namespace WebCore |
167 | 169 |
168 #endif | 170 #endif |
OLD | NEW |