Index: content/renderer/service_worker/service_worker_context_client.h |
diff --git a/content/renderer/service_worker/service_worker_context_client.h b/content/renderer/service_worker/service_worker_context_client.h |
index 5cc4121d755e50543e21893019f2a1b37478277c..e67189c83597353c9d9562107e82c44b1a3ba084 100644 |
--- a/content/renderer/service_worker/service_worker_context_client.h |
+++ b/content/renderer/service_worker/service_worker_context_client.h |
@@ -9,13 +9,13 @@ |
#include <stdint.h> |
#include <map> |
+#include <memory> |
#include <string> |
#include <vector> |
#include "base/id_map.h" |
#include "base/macros.h" |
#include "base/memory/ref_counted.h" |
-#include "base/memory/scoped_ptr.h" |
#include "base/strings/string16.h" |
#include "base/time/time.h" |
#include "content/child/webmessageportchannel_impl.h" |
@@ -257,7 +257,7 @@ class ServiceWorkerContextClient |
// Initialized on the worker thread in workerContextStarted and |
// destructed on the worker thread in willDestroyWorkerContext. |
- scoped_ptr<WorkerContextData> context_; |
+ std::unique_ptr<WorkerContextData> context_; |
DISALLOW_COPY_AND_ASSIGN(ServiceWorkerContextClient); |
}; |