| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Computer, Inc. | 2 * Copyright (C) 2006 Apple Computer, Inc. |
| 3 * Copyright (C) 2009 Google, Inc. | 3 * Copyright (C) 2009 Google, Inc. |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 #if ENABLE(SVG) | 24 #if ENABLE(SVG) |
| 25 #include "AffineTransform.h" | 25 #include "AffineTransform.h" |
| 26 #include "FloatPoint.h" | 26 #include "FloatPoint.h" |
| 27 #include "FloatRect.h" | 27 #include "FloatRect.h" |
| 28 #include "RenderSVGBlock.h" | 28 #include "RenderSVGBlock.h" |
| 29 | 29 |
| 30 namespace WebCore { | 30 namespace WebCore { |
| 31 | 31 |
| 32 class SVGForeignObjectElement; | 32 class SVGForeignObjectElement; |
| 33 | 33 |
| 34 class RenderSVGForeignObject : public RenderSVGBlock { | 34 class RenderSVGForeignObject FINAL : public RenderSVGBlock { |
| 35 public: | 35 public: |
| 36 explicit RenderSVGForeignObject(SVGForeignObjectElement*); | 36 explicit RenderSVGForeignObject(SVGForeignObjectElement*); |
| 37 virtual ~RenderSVGForeignObject(); | 37 virtual ~RenderSVGForeignObject(); |
| 38 | 38 |
| 39 virtual const char* renderName() const { return "RenderSVGForeignObject"; } | 39 virtual const char* renderName() const { return "RenderSVGForeignObject"; } |
| 40 | 40 |
| 41 virtual void paint(PaintInfo&, const LayoutPoint&); | 41 virtual void paint(PaintInfo&, const LayoutPoint&); |
| 42 | 42 |
| 43 virtual LayoutRect clippedOverflowRectForRepaint(const RenderLayerModelObjec
t* repaintContainer) const OVERRIDE; | 43 virtual LayoutRect clippedOverflowRectForRepaint(const RenderLayerModelObjec
t* repaintContainer) const OVERRIDE; |
| 44 virtual void computeFloatRectForRepaint(const RenderLayerModelObject* repain
tContainer, FloatRect&, bool fixed = false) const OVERRIDE; | 44 virtual void computeFloatRectForRepaint(const RenderLayerModelObject* repain
tContainer, FloatRect&, bool fixed = false) const OVERRIDE; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 68 bool m_needsTransformUpdate : 1; | 68 bool m_needsTransformUpdate : 1; |
| 69 FloatRect m_viewport; | 69 FloatRect m_viewport; |
| 70 AffineTransform m_localTransform; | 70 AffineTransform m_localTransform; |
| 71 mutable AffineTransform m_localToParentTransform; | 71 mutable AffineTransform m_localToParentTransform; |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 } | 74 } |
| 75 | 75 |
| 76 #endif | 76 #endif |
| 77 #endif | 77 #endif |
| OLD | NEW |