| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> | 3 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> |
| 4 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 4 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 virtual SVGUnitTypes::SVGUnitType gradientUnits() const = 0; | 60 virtual SVGUnitTypes::SVGUnitType gradientUnits() const = 0; |
| 61 virtual void calculateGradientTransform(AffineTransform&) = 0; | 61 virtual void calculateGradientTransform(AffineTransform&) = 0; |
| 62 virtual bool collectGradientAttributes(SVGGradientElement*) = 0; | 62 virtual bool collectGradientAttributes(SVGGradientElement*) = 0; |
| 63 virtual void buildGradient(GradientData*) const = 0; | 63 virtual void buildGradient(GradientData*) const = 0; |
| 64 | 64 |
| 65 GradientSpreadMethod platformSpreadMethodFromSVGType(SVGSpreadMethodType) co
nst; | 65 GradientSpreadMethod platformSpreadMethodFromSVGType(SVGSpreadMethodType) co
nst; |
| 66 | 66 |
| 67 private: | 67 private: |
| 68 bool m_shouldCollectGradientAttributes : 1; | 68 bool m_shouldCollectGradientAttributes : 1; |
| 69 HashMap<RenderObject*, OwnPtr<GradientData> > m_gradientMap; | 69 HashMap<RenderObject*, OwnPtr<GradientData> > m_gradientMap; |
| 70 | |
| 71 #if USE(CG) | |
| 72 GraphicsContext* m_savedContext; | |
| 73 OwnPtr<ImageBuffer> m_imageBuffer; | |
| 74 #endif | |
| 75 }; | 70 }; |
| 76 | 71 |
| 77 } | 72 } |
| 78 | 73 |
| 79 #endif | 74 #endif |
| 80 #endif | 75 #endif |
| OLD | NEW |