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

Unified Diff: content/browser/blob_storage/blob_dispatcher_host.h

Issue 1874893002: Convert //content/browser from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: content/browser/blob_storage/blob_dispatcher_host.h
diff --git a/content/browser/blob_storage/blob_dispatcher_host.h b/content/browser/blob_storage/blob_dispatcher_host.h
index bf1a03cf8fb81272f9d656e68d0eceb723c0d4da..b004aa2ab30aed8b7e9c8add3a2820337890c936 100644
--- a/content/browser/blob_storage/blob_dispatcher_host.h
+++ b/content/browser/blob_storage/blob_dispatcher_host.h
@@ -118,9 +118,9 @@ class CONTENT_EXPORT BlobDispatcherHost : public BrowserMessageFilter {
void SendMemoryRequest(
const std::string& uuid,
- scoped_ptr<std::vector<storage::BlobItemBytesRequest>> requests,
- scoped_ptr<std::vector<base::SharedMemoryHandle>> memory_handles,
- scoped_ptr<std::vector<base::File>> files);
+ std::unique_ptr<std::vector<storage::BlobItemBytesRequest>> requests,
+ std::unique_ptr<std::vector<base::SharedMemoryHandle>> memory_handles,
+ std::unique_ptr<std::vector<base::File>> files);
// Send the appropriate IPC response to the renderer for the given result.
void SendIPCResponse(const std::string& uuid,
« no previous file with comments | « content/browser/blob_storage/blob_async_builder_host_unittest.cc ('k') | content/browser/blob_storage/blob_dispatcher_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698