Index: content/browser/dom_storage/dom_storage_message_filter.h |
diff --git a/content/browser/dom_storage/dom_storage_message_filter.h b/content/browser/dom_storage/dom_storage_message_filter.h |
index 791ddf16344f2eab009c8a4d2c248d5f3a3b0413..a4894e9d79329d392a11c51b014fc93588d01c1a 100644 |
--- a/content/browser/dom_storage/dom_storage_message_filter.h |
+++ b/content/browser/dom_storage/dom_storage_message_filter.h |
@@ -7,9 +7,10 @@ |
#include <stdint.h> |
+#include <memory> |
+ |
#include "base/macros.h" |
#include "base/memory/ref_counted.h" |
-#include "base/memory/scoped_ptr.h" |
#include "content/browser/dom_storage/dom_storage_context_impl.h" |
#include "content/common/dom_storage/dom_storage_types.h" |
#include "content/public/browser/browser_message_filter.h" |
@@ -83,7 +84,7 @@ class DOMStorageMessageFilter |
const base::NullableString16& old_value); |
scoped_refptr<DOMStorageContextImpl> context_; |
- scoped_ptr<DOMStorageHost> host_; |
+ std::unique_ptr<DOMStorageHost> host_; |
int connection_dispatching_message_for_; |
DISALLOW_IMPLICIT_CONSTRUCTORS(DOMStorageMessageFilter); |