| 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 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <queue> | 9 #include <queue> |
| 10 | 10 |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 const WebKit::WebMouseWheelEvent& event) OVERRIDE; | 149 const WebKit::WebMouseWheelEvent& event) OVERRIDE; |
| 150 virtual InputEventAckState FilterInputEvent( | 150 virtual InputEventAckState FilterInputEvent( |
| 151 const WebKit::WebInputEvent& input_event) OVERRIDE; | 151 const WebKit::WebInputEvent& input_event) OVERRIDE; |
| 152 virtual void OnAccessibilityNotifications( | 152 virtual void OnAccessibilityNotifications( |
| 153 const std::vector<AccessibilityHostMsg_NotificationParams>& | 153 const std::vector<AccessibilityHostMsg_NotificationParams>& |
| 154 params) OVERRIDE; | 154 params) OVERRIDE; |
| 155 virtual bool LockMouse() OVERRIDE; | 155 virtual bool LockMouse() OVERRIDE; |
| 156 virtual void UnlockMouse() OVERRIDE; | 156 virtual void UnlockMouse() OVERRIDE; |
| 157 virtual void HasTouchEventHandlers(bool need_touch_events) OVERRIDE; | 157 virtual void HasTouchEventHandlers(bool need_touch_events) OVERRIDE; |
| 158 virtual void OnSwapCompositorFrame( | 158 virtual void OnSwapCompositorFrame( |
| 159 uint32 output_surface_id, |
| 159 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; | 160 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; |
| 160 virtual void OnOverscrolled(gfx::Vector2dF accumulated_overscroll, | 161 virtual void OnOverscrolled(gfx::Vector2dF accumulated_overscroll, |
| 161 gfx::Vector2dF current_fling_velocity) OVERRIDE; | 162 gfx::Vector2dF current_fling_velocity) OVERRIDE; |
| 162 virtual void ShowDisambiguationPopup(const gfx::Rect& target_rect, | 163 virtual void ShowDisambiguationPopup(const gfx::Rect& target_rect, |
| 163 const SkBitmap& zoomed_bitmap) OVERRIDE; | 164 const SkBitmap& zoomed_bitmap) OVERRIDE; |
| 164 virtual SmoothScrollGesture* CreateSmoothScrollGesture( | 165 virtual SmoothScrollGesture* CreateSmoothScrollGesture( |
| 165 bool scroll_down, int pixels_to_scroll, int mouse_event_x, | 166 bool scroll_down, int pixels_to_scroll, int mouse_event_x, |
| 166 int mouse_event_y) OVERRIDE; | 167 int mouse_event_y) OVERRIDE; |
| 167 | 168 |
| 168 // Implementation of BrowserAccessibilityDelegate: | 169 // Implementation of BrowserAccessibilityDelegate: |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 // Used to render overscroll overlays. | 304 // Used to render overscroll overlays. |
| 304 bool overscroll_effect_enabled_; | 305 bool overscroll_effect_enabled_; |
| 305 scoped_ptr<OverscrollGlow> overscroll_effect_; | 306 scoped_ptr<OverscrollGlow> overscroll_effect_; |
| 306 | 307 |
| 307 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 308 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
| 308 }; | 309 }; |
| 309 | 310 |
| 310 } // namespace content | 311 } // namespace content |
| 311 | 312 |
| 312 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 313 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
| OLD | NEW |