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

Unified Diff: third_party/WebKit/Source/core/layout/svg/SVGResources.h

Issue 2772773005: Make resource lookup more uniform in SVGResources::buildResources (Closed)
Patch Set: Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/layout/svg/SVGResources.h
diff --git a/third_party/WebKit/Source/core/layout/svg/SVGResources.h b/third_party/WebKit/Source/core/layout/svg/SVGResources.h
index 07cfa56b19939511d11f22a5551efb5231c413f3..fd6756651ffbf082a2b33a0e0da69c58734d95a7 100644
--- a/third_party/WebKit/Source/core/layout/svg/SVGResources.h
+++ b/third_party/WebKit/Source/core/layout/svg/SVGResources.h
@@ -118,15 +118,15 @@ class SVGResources {
void resetStroke();
void resetLinkedResource();
- bool setClipper(LayoutSVGResourceClipper*);
- bool setFilter(LayoutSVGResourceFilter*);
- bool setMarkerStart(LayoutSVGResourceMarker*);
- bool setMarkerMid(LayoutSVGResourceMarker*);
- bool setMarkerEnd(LayoutSVGResourceMarker*);
- bool setMasker(LayoutSVGResourceMasker*);
- bool setFill(LayoutSVGResourcePaintServer*);
- bool setStroke(LayoutSVGResourcePaintServer*);
- bool setLinkedResource(LayoutSVGResourceContainer*);
+ void setClipper(LayoutSVGResourceClipper*);
+ void setFilter(LayoutSVGResourceFilter*);
+ void setMarkerStart(LayoutSVGResourceMarker*);
+ void setMarkerMid(LayoutSVGResourceMarker*);
+ void setMarkerEnd(LayoutSVGResourceMarker*);
+ void setMasker(LayoutSVGResourceMasker*);
+ void setFill(LayoutSVGResourcePaintServer*);
+ void setStroke(LayoutSVGResourcePaintServer*);
+ void setLinkedResource(LayoutSVGResourceContainer*);
// From SVG 1.1 2nd Edition
// clipper: 'container elements' and 'graphics elements'

Powered by Google App Engine
This is Rietveld 408576698