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

Side by Side Diff: Source/WebCore/rendering/svg/RenderSVGResourceMarker.cpp

Issue 9949002: Merge 111601 (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1025/
Patch Set: Created 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Rob Buis <buis@kde.org>
4 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. 4 * Copyright (C) Research In Motion Limited 2009-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 *
11 * This library is distributed in the hope that it will be useful, 11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Library General Public License for more details. 14 * Library General Public License for more details.
15 * 15 *
16 * You should have received a copy of the GNU Library General Public License 16 * You should have received a copy of the GNU Library General Public License
17 * along with this library; see the file COPYING.LIB. If not, write to 17 * along with this library; see the file COPYING.LIB. If not, write to
18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 18 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA. 19 * Boston, MA 02110-1301, USA.
20 */ 20 */
21 21
22 #include "config.h" 22 #include "config.h"
23 23
24 #if ENABLE(SVG) 24 #if ENABLE(SVG)
25 #include "RenderSVGResourceMarker.h" 25 #include "RenderSVGResourceMarker.h"
26 26
27 #include "GraphicsContext.h" 27 #include "GraphicsContext.h"
28 #include "RenderSVGContainer.h" 28 #include "RenderSVGContainer.h"
29 #include "RenderSVGRoot.h"
29 #include "SVGElement.h" 30 #include "SVGElement.h"
30 #include "SVGMarkerElement.h" 31 #include "SVGMarkerElement.h"
31 #include "SVGRenderSupport.h" 32 #include "SVGRenderSupport.h"
32 #include "SVGStyledElement.h" 33 #include "SVGStyledElement.h"
33 #include "SVGStyledTransformableElement.h" 34 #include "SVGStyledTransformableElement.h"
34 35
35 namespace WebCore { 36 namespace WebCore {
36 37
37 RenderSVGResourceType RenderSVGResourceMarker::s_resourceType = MarkerResourceTy pe; 38 RenderSVGResourceType RenderSVGResourceMarker::s_resourceType = MarkerResourceTy pe;
38 39
39 RenderSVGResourceMarker::RenderSVGResourceMarker(SVGMarkerElement* node) 40 RenderSVGResourceMarker::RenderSVGResourceMarker(SVGMarkerElement* node)
40 : RenderSVGResourceContainer(node) 41 : RenderSVGResourceContainer(node)
41 { 42 {
42 } 43 }
43 44
44 RenderSVGResourceMarker::~RenderSVGResourceMarker() 45 RenderSVGResourceMarker::~RenderSVGResourceMarker()
45 { 46 {
46 } 47 }
47 48
48 void RenderSVGResourceMarker::layout() 49 void RenderSVGResourceMarker::layout()
49 { 50 {
50 // Invalidate all resources if our layout changed. 51 // Invalidate all resources if our layout changed.
51 if (everHadLayout() && selfNeedsLayout()) 52 if (everHadLayout() && selfNeedsLayout())
52 removeAllClientsFromCache(); 53 RenderSVGRoot::addResourceForClientInvalidation(this);
53 54
54 // RenderSVGHiddenContainer overwrites layout(). We need the 55 // RenderSVGHiddenContainer overwrites layout(). We need the
55 // layouting of RenderSVGContainer for calculating local 56 // layouting of RenderSVGContainer for calculating local
56 // transformations and repaint. 57 // transformations and repaint.
57 RenderSVGContainer::layout(); 58 RenderSVGContainer::layout();
58 } 59 }
59 60
60 void RenderSVGResourceMarker::removeAllClientsFromCache(bool markForInvalidation ) 61 void RenderSVGResourceMarker::removeAllClientsFromCache(bool markForInvalidation )
61 { 62 {
62 markAllClientsForInvalidation(markForInvalidation ? LayoutAndBoundariesInval idation : ParentOnlyInvalidation); 63 markAllClientsForInvalidation(markForInvalidation ? LayoutAndBoundariesInval idation : ParentOnlyInvalidation);
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 168
168 SVGLengthContext lengthContext(marker); 169 SVGLengthContext lengthContext(marker);
169 float w = marker->markerWidth().value(lengthContext); 170 float w = marker->markerWidth().value(lengthContext);
170 float h = marker->markerHeight().value(lengthContext); 171 float h = marker->markerHeight().value(lengthContext);
171 m_viewport = FloatRect(0, 0, w, h); 172 m_viewport = FloatRect(0, 0, w, h);
172 } 173 }
173 174
174 } 175 }
175 176
176 #endif // ENABLE(SVG) 177 #endif // ENABLE(SVG)
OLDNEW
« no previous file with comments | « Source/WebCore/rendering/svg/RenderSVGResourceContainer.cpp ('k') | Source/WebCore/rendering/svg/RenderSVGRoot.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698