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

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

Issue 2387353004: Delay Input.dispatchKeyEvent response until after key event ack. (Closed)
Patch Set: remove |is_synthetic|, fixed bug for mouse acks, add test for mouse events Created 4 years, 1 month 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
Index: content/browser/devtools/protocol/input_handler.cc
diff --git a/content/browser/devtools/protocol/input_handler.cc b/content/browser/devtools/protocol/input_handler.cc
index b963044209c287436628372f8df442313c35867a..be8293af32274ead95fdf5237d937439c05f0b0b 100644
--- a/content/browser/devtools/protocol/input_handler.cc
+++ b/content/browser/devtools/protocol/input_handler.cc
@@ -130,6 +130,7 @@ bool SetMouseEventType(blink::WebMouseEvent* event, const std::string& type) {
InputHandler::InputHandler()
: host_(NULL),
+ input_queued_(false),
page_scale_factor_(1.0),
weak_factory_(this) {
}
@@ -137,7 +138,36 @@ InputHandler::InputHandler()
InputHandler::~InputHandler() {
}
+void InputHandler::OnInputEvent(const blink::WebInputEvent& event) {
+ input_queued_ = true;
+}
+
+void InputHandler::OnInputEventAck(const blink::WebInputEvent& event) {
+ if (blink::WebInputEvent::isKeyboardEventType(event.type) &&
+ !pending_key_command_ids_.empty()) {
+ SendDispatchKeyEventResponse(pending_key_command_ids_.front());
+ pending_key_command_ids_.pop_front();
+ } else if (blink::WebInputEvent::isMouseEventType(event.type) &&
+ !pending_mouse_command_ids_.empty()) {
+ SendDispatchMouseEventResponse(pending_mouse_command_ids_.front());
+ pending_mouse_command_ids_.pop_front();
+ }
+}
+
void InputHandler::SetRenderWidgetHost(RenderWidgetHostImpl* host) {
+ for (const DevToolsCommandId& command_id : pending_key_command_ids_)
+ SendDispatchKeyEventResponse(command_id);
+ pending_key_command_ids_.clear();
+
+ for (const DevToolsCommandId& command_id : pending_mouse_command_ids_)
+ SendDispatchMouseEventResponse(command_id);
+ pending_mouse_command_ids_.clear();
+
+ if (host_)
+ host_->RemoveInputEventObserver(this);
+ if (host)
+ host->AddInputEventObserver(this);
dtapuska 2016/11/21 14:49:44 I'd expect host_ = host before the observer was ad
samuong 2016/11/21 18:05:34 Done.
+
host_ = host;
}
@@ -152,6 +182,7 @@ void InputHandler::OnSwapCompositorFrame(
}
Response InputHandler::DispatchKeyEvent(
+ DevToolsCommandId command_id,
const std::string& type,
const int* modifiers,
const double* timestamp,
@@ -213,11 +244,17 @@ Response InputHandler::DispatchKeyEvent(
return Response::ServerError("Could not connect to view");
host_->Focus();
+ input_queued_ = false;
host_->ForwardKeyboardEvent(event);
+ if (input_queued_)
+ pending_key_command_ids_.push_back(command_id);
+ else
+ SendDispatchKeyEventResponse(command_id);
return Response::OK();
}
Response InputHandler::DispatchMouseEvent(
+ DevToolsCommandId command_id,
const std::string& type,
int x,
int y,
@@ -249,7 +286,12 @@ Response InputHandler::DispatchMouseEvent(
return Response::ServerError("Could not connect to view");
host_->Focus();
+ input_queued_ = false;
host_->ForwardMouseEvent(event);
+ if (input_queued_)
+ pending_mouse_command_ids_.push_back(command_id);
+ else
+ SendDispatchMouseEventResponse(command_id);
return Response::OK();
}
@@ -479,6 +521,17 @@ Response InputHandler::DispatchTouchEvent(
return Response::FallThrough();
}
+void InputHandler::SendDispatchKeyEventResponse(DevToolsCommandId command_id) {
+ client_->SendDispatchKeyEventResponse(
+ command_id, DispatchKeyEventResponse::Create());
+}
+
+void InputHandler::SendDispatchMouseEventResponse(
+ DevToolsCommandId command_id) {
+ client_->SendDispatchMouseEventResponse(
+ command_id, DispatchMouseEventResponse::Create());
+}
+
void InputHandler::SendSynthesizePinchGestureResponse(
DevToolsCommandId command_id,
SyntheticGesture::Result result) {

Powered by Google App Engine
This is Rietveld 408576698