| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. | 2 * Copyright (C) Research In Motion Limited 2009-2010. 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 |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 12 * Library General Public License for more details. | 12 * Library General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU Library General Public License | 14 * You should have received a copy of the GNU Library General Public License |
| 15 * along with this library; see the file COPYING.LIB. If not, write to | 15 * along with this library; see the file COPYING.LIB. If not, write to |
| 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 17 * Boston, MA 02110-1301, USA. | 17 * Boston, MA 02110-1301, USA. |
| 18 */ | 18 */ |
| 19 | 19 |
| 20 #ifndef LayoutSVGResourceMasker_h | 20 #ifndef LayoutSVGResourceMasker_h |
| 21 #define LayoutSVGResourceMasker_h | 21 #define LayoutSVGResourceMasker_h |
| 22 | 22 |
| 23 #include "core/layout/svg/LayoutSVGResourceContainer.h" | 23 #include "core/layout/svg/LayoutSVGResourceContainer.h" |
| 24 #include "core/svg/SVGMaskElement.h" | 24 #include "core/svg/SVGMaskElement.h" |
| 25 #include "core/svg/SVGUnitTypes.h" | 25 #include "core/svg/SVGUnitTypes.h" |
| 26 #include "platform/geometry/FloatRect.h" | 26 #include "platform/geometry/FloatRect.h" |
| 27 #include "platform/geometry/IntSize.h" | |
| 28 #include "platform/graphics/ImageBuffer.h" | |
| 29 | |
| 30 #include "wtf/HashMap.h" | |
| 31 #include "wtf/OwnPtr.h" | |
| 32 | 27 |
| 33 class SkPicture; | 28 class SkPicture; |
| 34 class AffineTransform; | |
| 35 | 29 |
| 36 namespace blink { | 30 namespace blink { |
| 37 | 31 |
| 32 class AffineTransform; |
| 38 class GraphicsContext; | 33 class GraphicsContext; |
| 39 | 34 |
| 40 class LayoutSVGResourceMasker final : public LayoutSVGResourceContainer { | 35 class LayoutSVGResourceMasker final : public LayoutSVGResourceContainer { |
| 41 public: | 36 public: |
| 42 explicit LayoutSVGResourceMasker(SVGMaskElement*); | 37 explicit LayoutSVGResourceMasker(SVGMaskElement*); |
| 43 virtual ~LayoutSVGResourceMasker(); | 38 virtual ~LayoutSVGResourceMasker(); |
| 44 | 39 |
| 45 virtual const char* name() const override { return "LayoutSVGResourceMasker"
; } | 40 virtual const char* name() const override { return "LayoutSVGResourceMasker"
; } |
| 46 | 41 |
| 47 virtual void removeAllClientsFromCache(bool markForInvalidation = true) over
ride; | 42 virtual void removeAllClientsFromCache(bool markForInvalidation = true) over
ride; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 62 | 57 |
| 63 RefPtr<const SkPicture> m_maskContentPicture; | 58 RefPtr<const SkPicture> m_maskContentPicture; |
| 64 FloatRect m_maskContentBoundaries; | 59 FloatRect m_maskContentBoundaries; |
| 65 }; | 60 }; |
| 66 | 61 |
| 67 DEFINE_LAYOUT_SVG_RESOURCE_TYPE_CASTS(LayoutSVGResourceMasker, MaskerResourceTyp
e); | 62 DEFINE_LAYOUT_SVG_RESOURCE_TYPE_CASTS(LayoutSVGResourceMasker, MaskerResourceTyp
e); |
| 68 | 63 |
| 69 } | 64 } |
| 70 | 65 |
| 71 #endif | 66 #endif |
| OLD | NEW |