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

Unified Diff: content/browser/quota_dispatcher_host.cc

Issue 2480293004: Mandate unique_ptr for base::IDMap in IDMapOwnPointer mode. (Closed)
Patch Set: Rebase Created 4 years, 1 month 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/quota_dispatcher_host.cc
diff --git a/content/browser/quota_dispatcher_host.cc b/content/browser/quota_dispatcher_host.cc
index 512beaf6aad16dea1f8b5dabdcf31b0205897e4e..f79f7e0d251eb9a2cc08d2a2d90f50b985ada8da 100644
--- a/content/browser/quota_dispatcher_host.cc
+++ b/content/browser/quota_dispatcher_host.cc
@@ -6,6 +6,8 @@
#include <stdint.h>
+#include <memory>
danakj 2016/11/30 00:34:00 should include base/memory/ptr_util.h for WrapUniq
+
#include "base/bind.h"
#include "base/memory/weak_ptr.h"
#include "base/numerics/safe_conversions.h"
@@ -33,7 +35,8 @@ class QuotaDispatcherHost::RequestDispatcher {
: dispatcher_host_(dispatcher_host),
render_process_id_(dispatcher_host->process_id_),
request_id_(request_id) {
- dispatcher_host_->outstanding_requests_.AddWithID(this, request_id_);
+ dispatcher_host_->outstanding_requests_.AddWithID(base::WrapUnique(this),
+ request_id_);
}
virtual ~RequestDispatcher() {}

Powered by Google App Engine
This is Rietveld 408576698