Index: content/browser/devtools/protocol/service_worker_handler.h |
diff --git a/content/browser/devtools/protocol/service_worker_handler.h b/content/browser/devtools/protocol/service_worker_handler.h |
index 02dcd8c43f5309ba917073e10d8afb94ec3b90be..5f446792ac960776290b52a1de9794f24052b620 100644 |
--- a/content/browser/devtools/protocol/service_worker_handler.h |
+++ b/content/browser/devtools/protocol/service_worker_handler.h |
@@ -42,7 +42,7 @@ class ServiceWorkerHandler : public DevToolsAgentHostClient, |
~ServiceWorkerHandler() override; |
void SetRenderFrameHost(RenderFrameHostImpl* render_frame_host); |
- void SetClient(scoped_ptr<Client> client); |
+ void SetClient(std::unique_ptr<Client> client); |
void UpdateHosts(); |
void Detached(); |
@@ -92,7 +92,7 @@ class ServiceWorkerHandler : public DevToolsAgentHostClient, |
void ClearForceUpdate(); |
scoped_refptr<ServiceWorkerContextWrapper> context_; |
- scoped_ptr<Client> client_; |
+ std::unique_ptr<Client> client_; |
ServiceWorkerDevToolsAgentHost::Map attached_hosts_; |
bool enabled_; |
std::set<GURL> urls_; |