Index: content/browser/devtools/protocol/input_handler.h |
diff --git a/content/browser/devtools/protocol/input_handler.h b/content/browser/devtools/protocol/input_handler.h |
index 1bb7be96c74b66e2332141fe0edbd6984389c453..6e548a5cbcbd24e17c4b199fe3f843967fdc49d0 100644 |
--- a/content/browser/devtools/protocol/input_handler.h |
+++ b/content/browser/devtools/protocol/input_handler.h |
@@ -35,7 +35,7 @@ class InputHandler { |
virtual ~InputHandler(); |
void SetRenderWidgetHost(RenderWidgetHostImpl* host); |
- void SetClient(scoped_ptr<Client> client); |
+ void SetClient(std::unique_ptr<Client> client); |
void OnSwapCompositorFrame(const cc::CompositorFrameMetadata& frame_metadata); |
Response DispatchKeyEvent(const std::string& type, |
@@ -124,7 +124,7 @@ class InputHandler { |
SyntheticGesture::Result result); |
RenderWidgetHostImpl* host_; |
- scoped_ptr<Client> client_; |
+ std::unique_ptr<Client> client_; |
float page_scale_factor_; |
gfx::SizeF scrollable_viewport_size_; |
base::WeakPtrFactory<InputHandler> weak_factory_; |