| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 2 * Copyright (C) Research In Motion Limited 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 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 namespace blink { | 27 namespace blink { |
| 28 | 28 |
| 29 class RenderSVGResourceSolidColor FINAL : public RenderSVGResource { | 29 class RenderSVGResourceSolidColor FINAL : public RenderSVGResource { |
| 30 public: | 30 public: |
| 31 RenderSVGResourceSolidColor(); | 31 RenderSVGResourceSolidColor(); |
| 32 virtual ~RenderSVGResourceSolidColor(); | 32 virtual ~RenderSVGResourceSolidColor(); |
| 33 | 33 |
| 34 virtual void removeAllClientsFromCache(bool = true) OVERRIDE { } | 34 virtual void removeAllClientsFromCache(bool = true) OVERRIDE { } |
| 35 virtual void removeClientFromCache(RenderObject*, bool = true) OVERRIDE { } | 35 virtual void removeClientFromCache(RenderObject*, bool = true) OVERRIDE { } |
| 36 | 36 |
| 37 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*&, u
nsigned short resourceMode) OVERRIDE; | 37 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*, Re
nderSVGResourceModeFlags) OVERRIDE; |
| 38 | 38 |
| 39 virtual RenderSVGResourceType resourceType() const OVERRIDE { return s_resou
rceType; } | 39 virtual RenderSVGResourceType resourceType() const OVERRIDE { return s_resou
rceType; } |
| 40 static const RenderSVGResourceType s_resourceType; | 40 static const RenderSVGResourceType s_resourceType; |
| 41 | 41 |
| 42 const Color& color() const { return m_color; } | 42 const Color& color() const { return m_color; } |
| 43 void setColor(const Color& color) { m_color = color; } | 43 void setColor(const Color& color) { m_color = color; } |
| 44 | 44 |
| 45 private: | 45 private: |
| 46 Color m_color; | 46 Color m_color; |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 } | 49 } |
| 50 | 50 |
| 51 #endif | 51 #endif |
| OLD | NEW |