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

Unified Diff: Source/core/html/HTMLFormElement.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/HTMLAnchorElement.cpp ('k') | Source/core/html/shadow/ContentDistributor.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLFormElement.cpp
diff --git a/Source/core/html/HTMLFormElement.cpp b/Source/core/html/HTMLFormElement.cpp
index f4b7a3fe45fbf51ba7a66943f3281e86d8a92de2..453a59e1b736fe8c21772093da4a420d8cfff1b4 100644
--- a/Source/core/html/HTMLFormElement.cpp
+++ b/Source/core/html/HTMLFormElement.cpp
@@ -663,7 +663,7 @@ HTMLFormControlElement* HTMLFormElement::elementForAlias(const AtomicString& ali
{
if (alias.isEmpty() || !m_elementAliases)
return 0;
- return m_elementAliases->get(alias.impl()).get();
+ return m_elementAliases->get(alias.impl());
}
void HTMLFormElement::addElementAlias(HTMLFormControlElement* element, const AtomicString& alias)
« no previous file with comments | « Source/core/html/HTMLAnchorElement.cpp ('k') | Source/core/html/shadow/ContentDistributor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698