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

Unified Diff: Source/core/rendering/svg/RenderSVGResourceFilter.h

Issue 24096014: Add toRenderSVGResourceFilter() fuction, and use it. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 3 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
« no previous file with comments | « no previous file | Source/core/rendering/svg/RenderSVGResourceFilterPrimitive.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/svg/RenderSVGResourceFilter.h
diff --git a/Source/core/rendering/svg/RenderSVGResourceFilter.h b/Source/core/rendering/svg/RenderSVGResourceFilter.h
index 36b91ae9e92e89ed27c1a3615a560214a307f873..ebb4c9f3689a5d7b7ee49f3d97c2fd47ae1eabe9 100644
--- a/Source/core/rendering/svg/RenderSVGResourceFilter.h
+++ b/Source/core/rendering/svg/RenderSVGResourceFilter.h
@@ -88,10 +88,10 @@ private:
HashMap<RenderObject*, FilterData*> m_filter;
};
-inline RenderSVGResourceFilter* toRenderSVGFilter(RenderObject* object)
+inline RenderSVGResourceFilter* toRenderSVGResourceFilter(RenderSVGResource* resource)
tkent 2013/09/12 03:30:46 We should have both of toRenderSVGResourceFilter(R
{
- ASSERT_WITH_SECURITY_IMPLICATION(!object || object->isSVGResourceFilter());
- return static_cast<RenderSVGResourceFilter*>(object);
+ ASSERT_WITH_SECURITY_IMPLICATION(!resource || resource->resourceType() == FilterResourceType);
+ return static_cast<RenderSVGResourceFilter*>(resource);
}
}
« no previous file with comments | « no previous file | Source/core/rendering/svg/RenderSVGResourceFilterPrimitive.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698