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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_aura.cc

Issue 26664002: SyntheticGestureTarget implementation for injecting synthetic input events (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nits 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/browser/renderer_host/render_widget_host_view_aura.h" 5 #include "content/browser/renderer_host/render_widget_host_view_aura.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/callback_helpers.h" 9 #include "base/callback_helpers.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
11 #include "base/debug/trace_event.h" 11 #include "base/debug/trace_event.h"
12 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/message_loop/message_loop.h" 13 #include "base/message_loop/message_loop.h"
14 #include "base/strings/string_number_conversions.h" 14 #include "base/strings/string_number_conversions.h"
15 #include "cc/layers/delegated_frame_provider.h" 15 #include "cc/layers/delegated_frame_provider.h"
16 #include "cc/output/compositor_frame.h" 16 #include "cc/output/compositor_frame.h"
17 #include "cc/output/compositor_frame_ack.h" 17 #include "cc/output/compositor_frame_ack.h"
18 #include "cc/output/copy_output_request.h" 18 #include "cc/output/copy_output_request.h"
19 #include "cc/output/copy_output_result.h" 19 #include "cc/output/copy_output_result.h"
20 #include "cc/resources/texture_mailbox.h" 20 #include "cc/resources/texture_mailbox.h"
21 #include "cc/trees/layer_tree_settings.h" 21 #include "cc/trees/layer_tree_settings.h"
22 #include "content/browser/accessibility/browser_accessibility_manager.h" 22 #include "content/browser/accessibility/browser_accessibility_manager.h"
23 #include "content/browser/accessibility/browser_accessibility_state_impl.h" 23 #include "content/browser/accessibility/browser_accessibility_state_impl.h"
24 #include "content/browser/aura/compositor_resize_lock.h" 24 #include "content/browser/aura/compositor_resize_lock.h"
25 #include "content/browser/gpu/compositor_util.h" 25 #include "content/browser/gpu/compositor_util.h"
26 #include "content/browser/renderer_host/backing_store_aura.h" 26 #include "content/browser/renderer_host/backing_store_aura.h"
27 #include "content/browser/renderer_host/dip_util.h" 27 #include "content/browser/renderer_host/dip_util.h"
28 #include "content/browser/renderer_host/input/synthetic_gesture_target_aura.h"
28 #include "content/browser/renderer_host/overscroll_controller.h" 29 #include "content/browser/renderer_host/overscroll_controller.h"
29 #include "content/browser/renderer_host/render_view_host_delegate.h" 30 #include "content/browser/renderer_host/render_view_host_delegate.h"
30 #include "content/browser/renderer_host/render_widget_host_impl.h" 31 #include "content/browser/renderer_host/render_widget_host_impl.h"
31 #include "content/browser/renderer_host/touch_smooth_scroll_gesture_aura.h" 32 #include "content/browser/renderer_host/touch_smooth_scroll_gesture_aura.h"
32 #include "content/browser/renderer_host/ui_events_helper.h" 33 #include "content/browser/renderer_host/ui_events_helper.h"
33 #include "content/browser/renderer_host/web_input_event_aura.h" 34 #include "content/browser/renderer_host/web_input_event_aura.h"
34 #include "content/common/gpu/client/gl_helper.h" 35 #include "content/common/gpu/client/gl_helper.h"
35 #include "content/common/gpu/gpu_messages.h" 36 #include "content/common/gpu/gpu_messages.h"
36 #include "content/common/view_messages.h" 37 #include "content/common/view_messages.h"
37 #include "content/port/browser/render_widget_host_view_frame_subscriber.h" 38 #include "content/port/browser/render_widget_host_view_frame_subscriber.h"
(...skipping 2084 matching lines...) Expand 10 before | Expand all | Expand 10 after
2122 return; 2123 return;
2123 2124
2124 ui::EventResult result = (ack_result == 2125 ui::EventResult result = (ack_result ==
2125 INPUT_EVENT_ACK_STATE_CONSUMED) ? ui::ER_HANDLED : ui::ER_UNHANDLED; 2126 INPUT_EVENT_ACK_STATE_CONSUMED) ? ui::ER_HANDLED : ui::ER_UNHANDLED;
2126 for (ScopedVector<ui::TouchEvent>::iterator iter = events.begin(), 2127 for (ScopedVector<ui::TouchEvent>::iterator iter = events.begin(),
2127 end = events.end(); iter != end; ++iter) { 2128 end = events.end(); iter != end; ++iter) {
2128 dispatcher->ProcessedTouchEvent((*iter), window_, result); 2129 dispatcher->ProcessedTouchEvent((*iter), window_, result);
2129 } 2130 }
2130 } 2131 }
2131 2132
2133 scoped_ptr<SyntheticGestureTarget>
2134 RenderWidgetHostViewAura::CreateSyntheticGestureTarget() {
2135 return scoped_ptr<SyntheticGestureTarget>(
2136 new SyntheticGestureTargetAura(host_));
2137 }
2138
2132 SyntheticGesture* RenderWidgetHostViewAura::CreateSmoothScrollGesture( 2139 SyntheticGesture* RenderWidgetHostViewAura::CreateSmoothScrollGesture(
2133 bool scroll_down, 2140 bool scroll_down,
2134 int pixels_to_scroll, 2141 int pixels_to_scroll,
2135 int mouse_event_x, 2142 int mouse_event_x,
2136 int mouse_event_y) { 2143 int mouse_event_y) {
2137 return new TouchSmoothScrollGestureAura(scroll_down, 2144 return new TouchSmoothScrollGestureAura(scroll_down,
2138 pixels_to_scroll, 2145 pixels_to_scroll,
2139 mouse_event_x, 2146 mouse_event_x,
2140 mouse_event_y, 2147 mouse_event_y,
2141 window_); 2148 window_);
(...skipping 1296 matching lines...) Expand 10 before | Expand all | Expand 10 after
3438 RenderWidgetHost* widget) { 3445 RenderWidgetHost* widget) {
3439 return new RenderWidgetHostViewAura(widget); 3446 return new RenderWidgetHostViewAura(widget);
3440 } 3447 }
3441 3448
3442 // static 3449 // static
3443 void RenderWidgetHostViewPort::GetDefaultScreenInfo(WebScreenInfo* results) { 3450 void RenderWidgetHostViewPort::GetDefaultScreenInfo(WebScreenInfo* results) {
3444 GetScreenInfoForWindow(results, NULL); 3451 GetScreenInfoForWindow(results, NULL);
3445 } 3452 }
3446 3453
3447 } // namespace content 3454 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698