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_base.h" | 5 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "content/browser/accessibility/browser_accessibility_manager.h" | 8 #include "content/browser/accessibility/browser_accessibility_manager.h" |
9 #include "content/browser/renderer_host/render_widget_host_impl.h" | 9 #include "content/browser/renderer_host/render_widget_host_impl.h" |
10 #include "content/port/browser/smooth_scroll_gesture.h" | 10 #include "content/port/browser/smooth_scroll_gesture.h" |
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 int mouse_event_x_; | 477 int mouse_event_x_; |
478 int mouse_event_y_; | 478 int mouse_event_y_; |
479 }; | 479 }; |
480 | 480 |
481 SmoothScrollGesture* RenderWidgetHostViewBase::CreateSmoothScrollGesture( | 481 SmoothScrollGesture* RenderWidgetHostViewBase::CreateSmoothScrollGesture( |
482 bool scroll_down, bool scroll_far, int mouse_event_x, int mouse_event_y) { | 482 bool scroll_down, bool scroll_far, int mouse_event_x, int mouse_event_y) { |
483 return new BasicMouseWheelSmoothScrollGesture(scroll_down, scroll_far, | 483 return new BasicMouseWheelSmoothScrollGesture(scroll_down, scroll_far, |
484 mouse_event_x, mouse_event_y); | 484 mouse_event_x, mouse_event_y); |
485 } | 485 } |
486 | 486 |
| 487 void RenderWidgetHostViewBase::ProcessAckedTouchEvent( |
| 488 const WebKit::WebTouchEvent& touch, |
| 489 bool processed) { |
| 490 } |
| 491 |
487 } // namespace content | 492 } // namespace content |
OLD | NEW |