OLD | NEW |
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" |
(...skipping 11 matching lines...) Expand all Loading... |
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/input/synthetic_gesture_target_aura.h" |
29 #include "content/browser/renderer_host/overscroll_controller.h" | 29 #include "content/browser/renderer_host/overscroll_controller.h" |
30 #include "content/browser/renderer_host/render_view_host_delegate.h" | 30 #include "content/browser/renderer_host/render_view_host_delegate.h" |
31 #include "content/browser/renderer_host/render_widget_host_impl.h" | 31 #include "content/browser/renderer_host/render_widget_host_impl.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" |
38 #include "content/port/browser/render_widget_host_view_port.h" | 39 #include "content/port/browser/render_widget_host_view_port.h" |
39 #include "content/public/browser/browser_thread.h" | 40 #include "content/public/browser/browser_thread.h" |
40 #include "content/public/browser/content_browser_client.h" | 41 #include "content/public/browser/content_browser_client.h" |
41 #include "content/public/browser/render_process_host.h" | 42 #include "content/public/browser/render_process_host.h" |
(...skipping 1999 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2041 dispatcher->ProcessedTouchEvent((*iter), window_, result); | 2042 dispatcher->ProcessedTouchEvent((*iter), window_, result); |
2042 } | 2043 } |
2043 } | 2044 } |
2044 | 2045 |
2045 scoped_ptr<SyntheticGestureTarget> | 2046 scoped_ptr<SyntheticGestureTarget> |
2046 RenderWidgetHostViewAura::CreateSyntheticGestureTarget() { | 2047 RenderWidgetHostViewAura::CreateSyntheticGestureTarget() { |
2047 return scoped_ptr<SyntheticGestureTarget>( | 2048 return scoped_ptr<SyntheticGestureTarget>( |
2048 new SyntheticGestureTargetAura(host_)); | 2049 new SyntheticGestureTargetAura(host_)); |
2049 } | 2050 } |
2050 | 2051 |
| 2052 SyntheticGesture* RenderWidgetHostViewAura::CreateSmoothScrollGesture( |
| 2053 bool scroll_down, |
| 2054 int pixels_to_scroll, |
| 2055 int mouse_event_x, |
| 2056 int mouse_event_y) { |
| 2057 return new TouchSmoothScrollGestureAura(scroll_down, |
| 2058 pixels_to_scroll, |
| 2059 mouse_event_x, |
| 2060 mouse_event_y, |
| 2061 window_); |
| 2062 } |
| 2063 |
2051 void RenderWidgetHostViewAura::SetHasHorizontalScrollbar( | 2064 void RenderWidgetHostViewAura::SetHasHorizontalScrollbar( |
2052 bool has_horizontal_scrollbar) { | 2065 bool has_horizontal_scrollbar) { |
2053 // Not needed. Mac-only. | 2066 // Not needed. Mac-only. |
2054 } | 2067 } |
2055 | 2068 |
2056 void RenderWidgetHostViewAura::SetScrollOffsetPinning( | 2069 void RenderWidgetHostViewAura::SetScrollOffsetPinning( |
2057 bool is_pinned_to_left, bool is_pinned_to_right) { | 2070 bool is_pinned_to_left, bool is_pinned_to_right) { |
2058 // Not needed. Mac-only. | 2071 // Not needed. Mac-only. |
2059 } | 2072 } |
2060 | 2073 |
(...skipping 1290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3351 RenderWidgetHost* widget) { | 3364 RenderWidgetHost* widget) { |
3352 return new RenderWidgetHostViewAura(widget); | 3365 return new RenderWidgetHostViewAura(widget); |
3353 } | 3366 } |
3354 | 3367 |
3355 // static | 3368 // static |
3356 void RenderWidgetHostViewPort::GetDefaultScreenInfo(WebScreenInfo* results) { | 3369 void RenderWidgetHostViewPort::GetDefaultScreenInfo(WebScreenInfo* results) { |
3357 GetScreenInfoForWindow(results, NULL); | 3370 GetScreenInfoForWindow(results, NULL); |
3358 } | 3371 } |
3359 | 3372 |
3360 } // namespace content | 3373 } // namespace content |
OLD | NEW |