| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> | 2 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> |
| 3 * Copyright (C) 2006, 2009 Apple Inc. All rights reserved. | 3 * Copyright (C) 2006, 2009 Apple Inc. All rights reserved. |
| 4 * Copyright (C) 2007 Rob Buis <buis@kde.org> | 4 * Copyright (C) 2007 Rob Buis <buis@kde.org> |
| 5 * Copyright (C) 2009 Google, Inc. | 5 * Copyright (C) 2009 Google, Inc. |
| 6 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> | 6 * Copyright (C) 2010 Patrick Gansterer <paroga@paroga.com> |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 void updateBoundingBox(); | 65 void updateBoundingBox(); |
| 66 | 66 |
| 67 bool nodeAtFloatPoint(HitTestResult&, const FloatPoint& pointInParent, HitTe
stAction) override; | 67 bool nodeAtFloatPoint(HitTestResult&, const FloatPoint& pointInParent, HitTe
stAction) override; |
| 68 | 68 |
| 69 AffineTransform localSVGTransform() const override { return m_localTransform
; } | 69 AffineTransform localSVGTransform() const override { return m_localTransform
; } |
| 70 | 70 |
| 71 bool m_needsBoundariesUpdate : 1; | 71 bool m_needsBoundariesUpdate : 1; |
| 72 bool m_needsTransformUpdate : 1; | 72 bool m_needsTransformUpdate : 1; |
| 73 AffineTransform m_localTransform; | 73 AffineTransform m_localTransform; |
| 74 FloatRect m_objectBoundingBox; | 74 FloatRect m_objectBoundingBox; |
| 75 OwnPtrWillBePersistent<LayoutImageResource> m_imageResource; | 75 Persistent<LayoutImageResource> m_imageResource; |
| 76 }; | 76 }; |
| 77 | 77 |
| 78 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGImage, isSVGImage()); | 78 DEFINE_LAYOUT_OBJECT_TYPE_CASTS(LayoutSVGImage, isSVGImage()); |
| 79 | 79 |
| 80 } // namespace blink | 80 } // namespace blink |
| 81 | 81 |
| 82 #endif // LayoutSVGImage_h | 82 #endif // LayoutSVGImage_h |
| OLD | NEW |