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

Side by Side Diff: content/renderer/mus/compositor_mus_connection.cc

Issue 1780953003: Change the non-blocking event queue to the main thread event queue. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master_wheel_regression_5
Patch Set: Fix up issues from patch set 2 Created 4 years, 9 months 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/renderer/mus/compositor_mus_connection.h" 5 #include "content/renderer/mus/compositor_mus_connection.h"
6 6
7 #include "base/single_thread_task_runner.h" 7 #include "base/single_thread_task_runner.h"
8 #include "content/common/input/web_input_event_traits.h" 8 #include "content/common/input/web_input_event_traits.h"
9 #include "content/renderer/input/input_handler_manager.h" 9 #include "content/renderer/input/input_handler_manager.h"
10 #include "content/renderer/mus/render_widget_mus_connection.h" 10 #include "content/renderer/mus/render_widget_mus_connection.h"
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 DCHECK(compositor_task_runner_->BelongsToCurrentThread()); 113 DCHECK(compositor_task_runner_->BelongsToCurrentThread());
114 scoped_ptr<blink::WebInputEvent> web_event = 114 scoped_ptr<blink::WebInputEvent> web_event =
115 event.To<scoped_ptr<blink::WebInputEvent>>(); 115 event.To<scoped_ptr<blink::WebInputEvent>>();
116 // TODO(sad): We probably need to plumb LatencyInfo through Mus. 116 // TODO(sad): We probably need to plumb LatencyInfo through Mus.
117 ui::LatencyInfo info; 117 ui::LatencyInfo info;
118 InputEventAckState ack_state = input_handler_manager_->HandleInputEvent( 118 InputEventAckState ack_state = input_handler_manager_->HandleInputEvent(
119 routing_id_, web_event.get(), &info); 119 routing_id_, web_event.get(), &info);
120 if (ack_state != INPUT_EVENT_ACK_STATE_NOT_CONSUMED) 120 if (ack_state != INPUT_EVENT_ACK_STATE_NOT_CONSUMED)
121 return; 121 return;
122 base::Closure ack = base::Bind(&base::DoNothing); 122 base::Closure ack = base::Bind(&base::DoNothing);
123 const bool send_ack = 123 const bool send_ack = WebInputEventTraits::ShouldBlockEventStream(*web_event);
124 WebInputEventTraits::WillReceiveAckFromRenderer(*web_event);
125 if (send_ack) { 124 if (send_ack) {
126 // Ultimately, this ACK needs to go back to the Mus client lib which is not 125 // Ultimately, this ACK needs to go back to the Mus client lib which is not
127 // thread-safe and lives on the compositor thread. For ACKs that are passed 126 // thread-safe and lives on the compositor thread. For ACKs that are passed
128 // to the main thread we pass them back to the compositor thread via 127 // to the main thread we pass them back to the compositor thread via
129 // OnWindowInputEventAckOnMainThread. 128 // OnWindowInputEventAckOnMainThread.
130 ack = 129 ack =
131 base::Bind(&CompositorMusConnection::OnWindowInputEventAckOnMainThread, 130 base::Bind(&CompositorMusConnection::OnWindowInputEventAckOnMainThread,
132 this, *ack_callback->get()); 131 this, *ack_callback->get());
133 ack_callback->reset(); 132 ack_callback->reset();
134 } 133 }
135 main_task_runner_->PostTask( 134 main_task_runner_->PostTask(
136 FROM_HERE, 135 FROM_HERE,
137 base::Bind(&CompositorMusConnection::OnWindowInputEventOnMainThread, this, 136 base::Bind(&CompositorMusConnection::OnWindowInputEventOnMainThread, this,
138 base::Passed(std::move(web_event)), ack)); 137 base::Passed(std::move(web_event)), ack));
139 } 138 }
140 139
141 } // namespace content 140 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698