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

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: remove unused forward decl 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 #include "content/browser/accessibility/browser_accessibility_win.h" 83 #include "content/browser/accessibility/browser_accessibility_win.h"
83 #include "ui/base/win/hidden_window.h" 84 #include "ui/base/win/hidden_window.h"
84 #include "ui/gfx/gdi_util.h" 85 #include "ui/gfx/gdi_util.h"
85 #include "ui/gfx/win/dpi.h" 86 #include "ui/gfx/win/dpi.h"
86 #endif 87 #endif
87 88
88 using gfx::RectToSkIRect; 89 using gfx::RectToSkIRect;
89 using gfx::SkIRectToRect; 90 using gfx::SkIRectToRect;
90 91
91 using WebKit::WebScreenInfo; 92 using WebKit::WebScreenInfo;
93 using WebKit::WebInputEvent;
Dominik Grewe 2013/10/28 10:12:00 I don't think this is needed anymore.
kouhei (in TOK) 2013/10/29 03:30:43 Done.
92 using WebKit::WebTouchEvent; 94 using WebKit::WebTouchEvent;
93 95
94 namespace content { 96 namespace content {
95 97
96 namespace { 98 namespace {
97 99
98 void MailboxReleaseCallback(scoped_ptr<base::SharedMemory> shared_memory, 100 void MailboxReleaseCallback(scoped_ptr<base::SharedMemory> shared_memory,
99 unsigned sync_point, bool lost_resource) { 101 unsigned sync_point, bool lost_resource) {
100 // NOTE: shared_memory will get released when we go out of scope. 102 // NOTE: shared_memory will get released when we go out of scope.
101 } 103 }
(...skipping 2000 matching lines...) Expand 10 before | Expand all | Expand 10 after
2102 return; 2104 return;
2103 2105
2104 ui::EventResult result = (ack_result == 2106 ui::EventResult result = (ack_result ==
2105 INPUT_EVENT_ACK_STATE_CONSUMED) ? ui::ER_HANDLED : ui::ER_UNHANDLED; 2107 INPUT_EVENT_ACK_STATE_CONSUMED) ? ui::ER_HANDLED : ui::ER_UNHANDLED;
2106 for (ScopedVector<ui::TouchEvent>::iterator iter = events.begin(), 2108 for (ScopedVector<ui::TouchEvent>::iterator iter = events.begin(),
2107 end = events.end(); iter != end; ++iter) { 2109 end = events.end(); iter != end; ++iter) {
2108 dispatcher->ProcessedTouchEvent((*iter), window_, result); 2110 dispatcher->ProcessedTouchEvent((*iter), window_, result);
2109 } 2111 }
2110 } 2112 }
2111 2113
2114 SyntheticGestureTarget*
2115 RenderWidgetHostViewAura::CreateSyntheticGestureTarget() {
2116 return new SyntheticGestureTargetAura(this);
2117 }
2118
2112 SyntheticGesture* RenderWidgetHostViewAura::CreateSmoothScrollGesture( 2119 SyntheticGesture* RenderWidgetHostViewAura::CreateSmoothScrollGesture(
2113 bool scroll_down, 2120 bool scroll_down,
2114 int pixels_to_scroll, 2121 int pixels_to_scroll,
2115 int mouse_event_x, 2122 int mouse_event_x,
2116 int mouse_event_y) { 2123 int mouse_event_y) {
2117 return new TouchSmoothScrollGestureAura(scroll_down, 2124 return new TouchSmoothScrollGestureAura(scroll_down,
2118 pixels_to_scroll, 2125 pixels_to_scroll,
2119 mouse_event_x, 2126 mouse_event_x,
2120 mouse_event_y, 2127 mouse_event_y,
2121 window_); 2128 window_);
(...skipping 1283 matching lines...) Expand 10 before | Expand all | Expand 10 after
3405 RenderWidgetHost* widget) { 3412 RenderWidgetHost* widget) {
3406 return new RenderWidgetHostViewAura(widget); 3413 return new RenderWidgetHostViewAura(widget);
3407 } 3414 }
3408 3415
3409 // static 3416 // static
3410 void RenderWidgetHostViewPort::GetDefaultScreenInfo(WebScreenInfo* results) { 3417 void RenderWidgetHostViewPort::GetDefaultScreenInfo(WebScreenInfo* results) {
3411 GetScreenInfoForWindow(results, NULL); 3418 GetScreenInfoForWindow(results, NULL);
3412 } 3419 }
3413 3420
3414 } // namespace content 3421 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698