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

Unified Diff: Source/core/svg/graphics/filters/SVGFilterBuilder.cpp

Issue 14763003: HashTraits<RefPtr<P> >::PeekType should be raw pointer for better performance (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 7 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 | « Source/core/rendering/RenderCounter.cpp ('k') | Source/modules/mediasource/MediaSourceRegistry.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/graphics/filters/SVGFilterBuilder.cpp
diff --git a/Source/core/svg/graphics/filters/SVGFilterBuilder.cpp b/Source/core/svg/graphics/filters/SVGFilterBuilder.cpp
index 96f8d567759d4b5fc07e7ac7a52503b7078bad7b..5c731f2057ffc8f3abcf7be0dd6562b653cb5962 100644
--- a/Source/core/svg/graphics/filters/SVGFilterBuilder.cpp
+++ b/Source/core/svg/graphics/filters/SVGFilterBuilder.cpp
@@ -57,13 +57,13 @@ FilterEffect* SVGFilterBuilder::getEffectById(const AtomicString& id) const
if (m_lastEffect)
return m_lastEffect.get();
- return m_builtinEffects.get(SourceGraphic::effectName()).get();
+ return m_builtinEffects.get(SourceGraphic::effectName());
}
if (m_builtinEffects.contains(id))
- return m_builtinEffects.get(id).get();
+ return m_builtinEffects.get(id);
- return m_namedEffects.get(id).get();
+ return m_namedEffects.get(id);
}
void SVGFilterBuilder::appendEffectToEffectReferences(PassRefPtr<FilterEffect> prpEffect, RenderObject* object)
« no previous file with comments | « Source/core/rendering/RenderCounter.cpp ('k') | Source/modules/mediasource/MediaSourceRegistry.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698