| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 static PassRefPtr<SVGSVGElement> create(Document&); | 47 static PassRefPtr<SVGSVGElement> create(Document&); |
| 48 | 48 |
| 49 using SVGGraphicsElement::ref; | 49 using SVGGraphicsElement::ref; |
| 50 using SVGGraphicsElement::deref; | 50 using SVGGraphicsElement::deref; |
| 51 | 51 |
| 52 virtual bool supportsFocus() const OVERRIDE { return hasFocusEventListeners(
); } | |
| 53 | |
| 54 // 'SVGSVGElement' functions | 52 // 'SVGSVGElement' functions |
| 55 const AtomicString& contentScriptType() const; | 53 const AtomicString& contentScriptType() const; |
| 56 void setContentScriptType(const AtomicString& type); | 54 void setContentScriptType(const AtomicString& type); |
| 57 | 55 |
| 58 const AtomicString& contentStyleType() const; | 56 const AtomicString& contentStyleType() const; |
| 59 void setContentStyleType(const AtomicString& type); | 57 void setContentStyleType(const AtomicString& type); |
| 60 | 58 |
| 61 PassRefPtr<SVGRectTearOff> viewport() const; | 59 PassRefPtr<SVGRectTearOff> viewport() const; |
| 62 | 60 |
| 63 float pixelUnitToMillimeterX() const; | 61 float pixelUnitToMillimeterX() const; |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 RefPtr<SMILTimeContainer> m_timeContainer; | 167 RefPtr<SMILTimeContainer> m_timeContainer; |
| 170 RefPtr<SVGPoint> m_translation; | 168 RefPtr<SVGPoint> m_translation; |
| 171 RefPtr<SVGViewSpec> m_viewSpec; | 169 RefPtr<SVGViewSpec> m_viewSpec; |
| 172 | 170 |
| 173 friend class SVGCurrentTranslateTearOff; | 171 friend class SVGCurrentTranslateTearOff; |
| 174 }; | 172 }; |
| 175 | 173 |
| 176 } // namespace WebCore | 174 } // namespace WebCore |
| 177 | 175 |
| 178 #endif | 176 #endif |
| OLD | NEW |