| Index: content/browser/appcache/appcache_dispatcher_host.h
|
| diff --git a/content/browser/appcache/appcache_dispatcher_host.h b/content/browser/appcache/appcache_dispatcher_host.h
|
| index 4181b4398eb43817901140acb7fb6371869998d3..9b882c8a97e706e4bf6723e15ff1b5dd35dae5b6 100644
|
| --- a/content/browser/appcache/appcache_dispatcher_host.h
|
| +++ b/content/browser/appcache/appcache_dispatcher_host.h
|
| @@ -7,11 +7,11 @@
|
|
|
| #include <stdint.h>
|
|
|
| +#include <memory>
|
| #include <vector>
|
|
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/process/process.h"
|
| #include "content/browser/appcache/appcache_backend_impl.h"
|
| @@ -70,7 +70,7 @@ class AppCacheDispatcherHost : public BrowserMessageFilter {
|
| content::GetStatusCallback get_status_callback_;
|
| content::StartUpdateCallback start_update_callback_;
|
| content::SwapCacheCallback swap_cache_callback_;
|
| - scoped_ptr<IPC::Message> pending_reply_msg_;
|
| + std::unique_ptr<IPC::Message> pending_reply_msg_;
|
|
|
| // The corresponding ChildProcessHost object's id().
|
| int process_id_;
|
|
|