| 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..88487ce5092dc17f012d6b0c743104ca84baad93 100644
|
| --- a/content/browser/quota_dispatcher_host.cc
|
| +++ b/content/browser/quota_dispatcher_host.cc
|
| @@ -6,7 +6,10 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| +
|
| #include "base/bind.h"
|
| +#include "base/memory/ptr_util.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/numerics/safe_conversions.h"
|
| #include "base/trace_event/trace_event.h"
|
| @@ -33,7 +36,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() {}
|
|
|
|
|