Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(29)

Side by Side Diff: Source/core/rendering/svg/RenderSVGResourceMarker.h

Issue 14383002: Apply FINAL to the RenderObject hierarchy. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase, add OVERRIDEs. Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
(...skipping 15 matching lines...) Expand all
26 #include "SVGMarkerElement.h" 26 #include "SVGMarkerElement.h"
27 #include "SVGStyledElement.h" 27 #include "SVGStyledElement.h"
28 28
29 #include <wtf/HashSet.h> 29 #include <wtf/HashSet.h>
30 30
31 namespace WebCore { 31 namespace WebCore {
32 32
33 class AffineTransform; 33 class AffineTransform;
34 class RenderObject; 34 class RenderObject;
35 35
36 class RenderSVGResourceMarker : public RenderSVGResourceContainer { 36 class RenderSVGResourceMarker FINAL : public RenderSVGResourceContainer {
37 public: 37 public:
38 RenderSVGResourceMarker(SVGMarkerElement*); 38 RenderSVGResourceMarker(SVGMarkerElement*);
39 virtual ~RenderSVGResourceMarker(); 39 virtual ~RenderSVGResourceMarker();
40 40
41 virtual const char* renderName() const { return "RenderSVGResourceMarker"; } 41 virtual const char* renderName() const { return "RenderSVGResourceMarker"; }
42 42
43 virtual void removeAllClientsFromCache(bool markForInvalidation = true); 43 virtual void removeAllClientsFromCache(bool markForInvalidation = true);
44 virtual void removeClientFromCache(RenderObject*, bool markForInvalidation = true); 44 virtual void removeClientFromCache(RenderObject*, bool markForInvalidation = true);
45 45
46 void draw(PaintInfo&, const AffineTransform&); 46 void draw(PaintInfo&, const AffineTransform&);
(...skipping 26 matching lines...) Expand all
73 AffineTransform viewportTransform() const; 73 AffineTransform viewportTransform() const;
74 74
75 mutable AffineTransform m_localToParentTransform; 75 mutable AffineTransform m_localToParentTransform;
76 FloatRect m_viewport; 76 FloatRect m_viewport;
77 }; 77 };
78 78
79 } 79 }
80 #endif 80 #endif
81 81
82 #endif 82 #endif
OLDNEW
« no previous file with comments | « Source/core/rendering/svg/RenderSVGResourceLinearGradient.h ('k') | Source/core/rendering/svg/RenderSVGResourceMasker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698