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

Unified Diff: Source/core/html/shadow/ContentDistributor.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/html/HTMLFormElement.cpp ('k') | Source/core/inspector/InspectorCSSAgent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/shadow/ContentDistributor.cpp
diff --git a/Source/core/html/shadow/ContentDistributor.cpp b/Source/core/html/shadow/ContentDistributor.cpp
index 9f30ad6615eb5919d1789d49408f3e06615b6fe7..fac95371dd0a48eff385f3774ff80bb8e1862ac8 100644
--- a/Source/core/html/shadow/ContentDistributor.cpp
+++ b/Source/core/html/shadow/ContentDistributor.cpp
@@ -189,7 +189,7 @@ ContentDistributor::~ContentDistributor()
InsertionPoint* ContentDistributor::findInsertionPointFor(const Node* key) const
{
- return m_nodeToInsertionPoint.get(key).get();
+ return m_nodeToInsertionPoint.get(key);
}
void ContentDistributor::populate(Node* node, ContentDistribution& pool)
« no previous file with comments | « Source/core/html/HTMLFormElement.cpp ('k') | Source/core/inspector/InspectorCSSAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698