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

Unified Diff: Source/core/svg/SVGFilterElement.cpp

Issue 17045008: HashSet: reverse the order of the template arguments at alternate 'find', 'contains' and 'add' meth… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 6 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: Source/core/svg/SVGFilterElement.cpp
diff --git a/Source/core/svg/SVGFilterElement.cpp b/Source/core/svg/SVGFilterElement.cpp
index 34029133917a247f3e7e080fbc368da651655329..0f2cbb38ec6d84e2577a29b8e69d59a1d92d56e7 100644
--- a/Source/core/svg/SVGFilterElement.cpp
+++ b/Source/core/svg/SVGFilterElement.cpp
@@ -115,7 +115,7 @@ bool SVGFilterElement::isSupportedAttribute(const QualifiedName& attrName)
supportedAttributes.add(SVGNames::heightAttr);
supportedAttributes.add(SVGNames::filterResAttr);
}
- return supportedAttributes.contains<QualifiedName, SVGAttributeHashTranslator>(attrName);
+ return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName);
}
void SVGFilterElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
@@ -226,7 +226,7 @@ bool SVGFilterElement::childShouldCreateRenderer(const NodeRenderingContext& chi
allowedChildElementTags.add(SVGNames::feTurbulenceTag);
}
- return allowedChildElementTags.contains<QualifiedName, SVGAttributeHashTranslator>(svgElement->tagQName());
+ return allowedChildElementTags.contains<SVGAttributeHashTranslator>(svgElement->tagQName());
}
bool SVGFilterElement::selfHasRelativeLengths() const
« no previous file with comments | « Source/core/svg/SVGFETurbulenceElement.cpp ('k') | Source/core/svg/SVGFilterPrimitiveStandardAttributes.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698