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

Unified Diff: content/browser/renderer_host/input/synthetic_gesture_target_aura.cc

Issue 26664002: SyntheticGestureTarget implementation for injecting synthetic input events (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add virtual to dtor Created 7 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/renderer_host/input/synthetic_gesture_target_aura.cc
diff --git a/content/browser/renderer_host/input/synthetic_gesture_target_aura.cc b/content/browser/renderer_host/input/synthetic_gesture_target_aura.cc
new file mode 100644
index 0000000000000000000000000000000000000000..4db289a2eec2a672297e7b209d48d6a8daffb7fd
--- /dev/null
+++ b/content/browser/renderer_host/input/synthetic_gesture_target_aura.cc
@@ -0,0 +1,74 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "content/browser/renderer_host/input/synthetic_gesture_target_aura.h"
+
+#include "content/browser/renderer_host/render_widget_host_impl.h"
+#include "content/browser/renderer_host/render_widget_host_view_aura.h"
+#include "content/browser/renderer_host/ui_events_helper.h"
+#include "content/common/input/input_event.h"
+#include "ui/aura/client/screen_position_client.h"
+#include "ui/aura/root_window.h"
+#include "ui/aura/window.h"
+
+using blink::WebTouchEvent;
+using blink::WebMouseWheelEvent;
+
+namespace content {
+
+SyntheticGestureTargetAura::SyntheticGestureTargetAura(
+ RenderWidgetHostImpl* host)
+ : SyntheticGestureTargetBase(host) {
+}
+
+void SyntheticGestureTargetAura::QueueWebTouchEventToPlatform(
+ const WebTouchEvent& web_touch,
+ const ui::LatencyInfo& latency_info) {
+ aura::Window* window = render_widget_host()->GetView()->GetNativeView();
+ aura::RootWindow* root_window =
+ static_cast<aura::RootWindow*>(window->GetRootWindow());
+ aura::client::ScreenPositionClient* position_client =
+ aura::client::GetScreenPositionClient(root_window);
+ DCHECK(position_client);
+
+ TouchEventWithLatencyInfo touch_with_latency(web_touch, latency_info);
+
+ // SyntheticGesture may skip calculating screenPosition, so we will fill it
+ // in here. "screenPosition" is converted from "position".
+ const size_t num_touches = touch_with_latency.event.touchesLength;
+ for (size_t i = 0; i < num_touches; ++ i) {
+ blink::WebTouchPoint* point = &touch_with_latency.event.touches[i];
+ gfx::Point position(point->position.x, point->position.y);
+ position_client->ConvertPointToScreen(window, &position);
+ point->screenPosition.x = position.x();
+ point->screenPosition.y = position.y();
+ }
+
+ ScopedVector<ui::TouchEvent> events;
+ bool conversion_success = MakeUITouchEventsFromWebTouchEvents(
+ touch_with_latency, &events, SCREEN_COORDINATES);
+ DCHECK(conversion_success);
+
+ aura::RootWindowHostDelegate* root_window_host_delegate =
+ root_window->AsRootWindowHostDelegate();
+ for (ScopedVector<ui::TouchEvent>::iterator iter = events.begin(),
+ end = events.end(); iter != end; ++iter) {
+ root_window_host_delegate->OnHostTouchEvent(*iter);
+ }
+}
+
+SyntheticGestureParams::GestureSourceType
+SyntheticGestureTargetAura::GetDefaultSyntheticGestureSourceType() const {
+ // TODO(297960): Change this to MOUSE_INPUT when a native impl of
+ // QueueWebMouseWheelEventToPlatform is ready.
+ return SyntheticGestureParams::TOUCH_INPUT;
+}
+
+bool SyntheticGestureTargetAura::SupportsSyntheticGestureSourceType(
+ SyntheticGestureParams::GestureSourceType gesture_source_type) const {
+ return gesture_source_type == SyntheticGestureParams::TOUCH_INPUT ||
+ gesture_source_type == SyntheticGestureParams::MOUSE_INPUT;
+}
+
+} // namespace content

Powered by Google App Engine
This is Rietveld 408576698