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

Unified Diff: Source/modules/mediasource/MediaSourceRegistry.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
Index: Source/modules/mediasource/MediaSourceRegistry.cpp
diff --git a/Source/modules/mediasource/MediaSourceRegistry.cpp b/Source/modules/mediasource/MediaSourceRegistry.cpp
index f897426d04ba18bf60a3e8dc237e4bd1c17414df..9950900ee8e4d74d6f11f1de3b6edcf40e0e7e1f 100644
--- a/Source/modules/mediasource/MediaSourceRegistry.cpp
+++ b/Source/modules/mediasource/MediaSourceRegistry.cpp
@@ -70,7 +70,7 @@ void MediaSourceRegistry::unregisterMediaSourceURL(const KURL& url)
MediaSource* MediaSourceRegistry::lookupMediaSource(const String& url)
{
ASSERT(isMainThread());
- return m_mediaSources.get(url).get();
+ return m_mediaSources.get(url);
}
} // namespace WebCore
« no previous file with comments | « Source/core/svg/graphics/filters/SVGFilterBuilder.cpp ('k') | Source/modules/mediastream/MediaStreamRegistry.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698