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

Unified Diff: Source/core/loader/archive/ArchiveResourceCollection.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/inspector/InspectorCSSAgent.cpp ('k') | Source/core/page/animation/CompositeAnimation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/archive/ArchiveResourceCollection.cpp
diff --git a/Source/core/loader/archive/ArchiveResourceCollection.cpp b/Source/core/loader/archive/ArchiveResourceCollection.cpp
index 55baadb50a2a03d2ee4373ac6fd35b299ffde9fe..804aa1f39ee4b0b479e63295326e192566dac8c5 100644
--- a/Source/core/loader/archive/ArchiveResourceCollection.cpp
+++ b/Source/core/loader/archive/ArchiveResourceCollection.cpp
@@ -74,7 +74,7 @@ void ArchiveResourceCollection::addResource(PassRefPtr<ArchiveResource> resource
ArchiveResource* ArchiveResourceCollection::archiveResourceForURL(const KURL& url)
{
- ArchiveResource* resource = m_subresources.get(url).get();
+ ArchiveResource* resource = m_subresources.get(url);
if (!resource)
return 0;
« no previous file with comments | « Source/core/inspector/InspectorCSSAgent.cpp ('k') | Source/core/page/animation/CompositeAnimation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698