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

Unified Diff: third_party/WebKit/Source/core/svg/graphics/filters/SVGFilterBuilder.h

Issue 2709033003: Migrate WTF::HashMap::get() to ::at() (Closed)
Patch Set: rebase Created 3 years, 10 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/svg/graphics/filters/SVGFilterBuilder.h
diff --git a/third_party/WebKit/Source/core/svg/graphics/filters/SVGFilterBuilder.h b/third_party/WebKit/Source/core/svg/graphics/filters/SVGFilterBuilder.h
index 43fe0eef6a173a7a16e47d33d96ac97719720b6e..a64245053cae2c867aec976bc0ef3b15b7dd82c9 100644
--- a/third_party/WebKit/Source/core/svg/graphics/filters/SVGFilterBuilder.h
+++ b/third_party/WebKit/Source/core/svg/graphics/filters/SVGFilterBuilder.h
@@ -58,7 +58,7 @@ class SVGFilterGraphNodeMap final
// Required to change the attributes of a filter during an
// svgAttributeChanged.
inline FilterEffect* effectByRenderer(LayoutObject* object) {
- return m_effectRenderer.get(object);
+ return m_effectRenderer.at(object);
}
void invalidateDependentEffects(FilterEffect*);

Powered by Google App Engine
This is Rietveld 408576698