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

Side by Side Diff: third_party/WebKit/Source/core/layout/svg/LayoutSVGResourceContainer.cpp

Issue 2647443004: Add SVGResources helper for resource-bounds invalidation (Closed)
Patch Set: Default was actually true... Created 3 years, 11 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/svg/SVGResources.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 #include "core/layout/svg/LayoutSVGResourceContainer.h" 20 #include "core/layout/svg/LayoutSVGResourceContainer.h"
21 21
22 #include "core/SVGElementTypeHelpers.h"
23 #include "core/layout/svg/LayoutSVGResourceClipper.h"
24 #include "core/layout/svg/LayoutSVGResourceFilter.h"
25 #include "core/layout/svg/LayoutSVGResourceMasker.h"
26 #include "core/layout/svg/SVGResources.h" 22 #include "core/layout/svg/SVGResources.h"
27 #include "core/layout/svg/SVGResourcesCache.h" 23 #include "core/layout/svg/SVGResourcesCache.h"
28 #include "core/svg/SVGElementProxy.h" 24 #include "core/svg/SVGElementProxy.h"
29 #include "wtf/AutoReset.h" 25 #include "wtf/AutoReset.h"
30 26
31 namespace blink { 27 namespace blink {
32 28
33 static inline SVGDocumentExtensions& svgExtensionsFromElement( 29 static inline SVGDocumentExtensions& svgExtensionsFromElement(
34 Element* element) { 30 Element* element) {
35 ASSERT(element); 31 ASSERT(element);
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 LayoutInvalidationReason::SvgResourceInvalidated); 238 LayoutInvalidationReason::SvgResourceInvalidated);
243 } 239 }
244 } 240 }
245 241
246 static inline void removeFromCacheAndInvalidateDependencies( 242 static inline void removeFromCacheAndInvalidateDependencies(
247 LayoutObject* object, 243 LayoutObject* object,
248 bool needsLayout) { 244 bool needsLayout) {
249 ASSERT(object); 245 ASSERT(object);
250 if (SVGResources* resources = 246 if (SVGResources* resources =
251 SVGResourcesCache::cachedResourcesForLayoutObject(object)) { 247 SVGResourcesCache::cachedResourcesForLayoutObject(object)) {
252 if (LayoutSVGResourceFilter* filter = resources->filter()) 248 resources->removeClientFromCacheAffectingObjectBounds(object);
253 filter->removeClientFromCache(object);
254
255 if (LayoutSVGResourceMasker* masker = resources->masker())
256 masker->removeClientFromCache(object);
257
258 if (LayoutSVGResourceClipper* clipper = resources->clipper())
259 clipper->removeClientFromCache(object);
260 } 249 }
261 250
262 if (!object->node() || !object->node()->isSVGElement()) 251 if (!object->node() || !object->node()->isSVGElement())
263 return; 252 return;
264 253
265 SVGElementSet* dependencies = 254 SVGElementSet* dependencies =
266 toSVGElement(object->node())->setOfIncomingReferences(); 255 toSVGElement(object->node())->setOfIncomingReferences();
267 if (!dependencies) 256 if (!dependencies)
268 return; 257 return;
269 258
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 // This will process the rest of the ancestors. 299 // This will process the rest of the ancestors.
311 toLayoutSVGResourceContainer(current)->removeAllClientsFromCache(); 300 toLayoutSVGResourceContainer(current)->removeAllClientsFromCache();
312 break; 301 break;
313 } 302 }
314 303
315 current = current->parent(); 304 current = current->parent();
316 } 305 }
317 } 306 }
318 307
319 } // namespace blink 308 } // namespace blink
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/svg/SVGResources.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698