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

Unified Diff: content/browser/quota_dispatcher_host.cc

Issue 2480293004: Mandate unique_ptr for base::IDMap in IDMapOwnPointer mode. (Closed)
Patch Set: Fix typo breaking a bunch of trybot builds, oops 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..c86215002aa3207775e5c904363b9309d976de36 100644
--- a/content/browser/quota_dispatcher_host.cc
+++ b/content/browser/quota_dispatcher_host.cc
@@ -6,6 +6,8 @@
#include <stdint.h>
+#include <memory>
+
#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(
+ std::unique_ptr<RequestDispatcher>(this), request_id_);
danakj 2016/11/18 00:15:33 WrapUnique also, O_O;
}
virtual ~RequestDispatcher() {}

Powered by Google App Engine
This is Rietveld 408576698