| Index: content/browser/devtools/protocol/security_handler.h
|
| diff --git a/content/browser/devtools/protocol/security_handler.h b/content/browser/devtools/protocol/security_handler.h
|
| index 3f9ce2b139da8895409b7c7b3fe076d38d7090b0..5f5fe68f5aa236062cf2ccd765ec089de1e5dfaf 100644
|
| --- a/content/browser/devtools/protocol/security_handler.h
|
| +++ b/content/browser/devtools/protocol/security_handler.h
|
| @@ -22,7 +22,7 @@ class SecurityHandler : public WebContentsObserver {
|
| SecurityHandler();
|
| ~SecurityHandler() override;
|
|
|
| - void SetClient(scoped_ptr<Client> client);
|
| + void SetClient(std::unique_ptr<Client> client);
|
| void SetRenderFrameHost(RenderFrameHost* host);
|
|
|
| Response Enable();
|
| @@ -36,7 +36,7 @@ class SecurityHandler : public WebContentsObserver {
|
| SecurityStyle security_style,
|
| const SecurityStyleExplanations& security_style_explanations) override;
|
|
|
| - scoped_ptr<Client> client_;
|
| + std::unique_ptr<Client> client_;
|
| bool enabled_;
|
| RenderFrameHost* host_;
|
|
|
|
|