Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(278)

Unified Diff: content/browser/devtools/protocol/input_handler.h

Issue 2544893002: [DevTools] Migrate InputHandler from RenderWidgetHostImpl to RenderFrameHostImpl. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/browser/devtools/protocol/input_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 691cad2f6417e1310317a2edcedbd44063dd263a..a54b97b7851e009f532e5c3dc7fd9735410d8d52 100644
--- a/content/browser/devtools/protocol/input_handler.h
+++ b/content/browser/devtools/protocol/input_handler.h
@@ -18,7 +18,7 @@ class CompositorFrameMetadata;
namespace content {
-class RenderWidgetHostImpl;
+class RenderFrameHostImpl;
namespace devtools {
namespace input {
@@ -30,7 +30,7 @@ class InputHandler {
InputHandler();
virtual ~InputHandler();
- void SetRenderWidgetHost(RenderWidgetHostImpl* host);
+ void SetRenderFrameHost(RenderFrameHostImpl* host);
void SetClient(std::unique_ptr<Client> client);
void OnSwapCompositorFrame(const cc::CompositorFrameMetadata& frame_metadata);
@@ -125,7 +125,7 @@ class InputHandler {
DevToolsCommandId command_id,
SyntheticGesture::Result result);
- RenderWidgetHostImpl* host_;
+ RenderFrameHostImpl* host_;
std::unique_ptr<Client> client_;
float page_scale_factor_;
gfx::SizeF scrollable_viewport_size_;
« no previous file with comments | « no previous file | content/browser/devtools/protocol/input_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698