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

Unified Diff: content/browser/storage_partition_impl_map.cc

Issue 15984016: Call scoped_refptr<T>::get() rather than relying on implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 6 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 | « content/browser/storage_partition_impl.cc ('k') | content/browser/streams/stream_handle_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/storage_partition_impl_map.cc
diff --git a/content/browser/storage_partition_impl_map.cc b/content/browser/storage_partition_impl_map.cc
index 898769267ada41def18444c81ea659b66d4a6980..a8b41cc3a052777a5a75c460e30c330c966e1709 100644
--- a/content/browser/storage_partition_impl_map.cc
+++ b/content/browser/storage_partition_impl_map.cc
@@ -82,9 +82,10 @@ class BlobProtocolHandler : public net::URLRequestJobFactory::ProtocolHandler {
StreamContext* stream_context,
fileapi::FileSystemContext* file_system_context)
: webkit_blob::BlobProtocolHandler(
- blob_storage_controller, file_system_context,
- BrowserThread::GetMessageLoopProxyForThread(
- BrowserThread::FILE)),
+ blob_storage_controller,
+ file_system_context,
+ BrowserThread::GetMessageLoopProxyForThread(BrowserThread::FILE)
+ .get()),
stream_context_(stream_context) {}
virtual ~WebKitBlobProtocolHandlerImpl() {}
« no previous file with comments | « content/browser/storage_partition_impl.cc ('k') | content/browser/streams/stream_handle_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698