| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 InputEventAckState ack_result) OVERRIDE; | 161 InputEventAckState ack_result) OVERRIDE; |
| 162 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; | 162 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; |
| 163 virtual bool LockMouse() OVERRIDE; | 163 virtual bool LockMouse() OVERRIDE; |
| 164 virtual void UnlockMouse() OVERRIDE; | 164 virtual void UnlockMouse() OVERRIDE; |
| 165 virtual void HasTouchEventHandlers(bool need_touch_events) OVERRIDE; | 165 virtual void HasTouchEventHandlers(bool need_touch_events) OVERRIDE; |
| 166 virtual void OnSwapCompositorFrame( | 166 virtual void OnSwapCompositorFrame( |
| 167 uint32 output_surface_id, | 167 uint32 output_surface_id, |
| 168 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; | 168 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; |
| 169 virtual void OnOverscrolled(gfx::Vector2dF accumulated_overscroll, | 169 virtual void OnOverscrolled(gfx::Vector2dF accumulated_overscroll, |
| 170 gfx::Vector2dF current_fling_velocity) OVERRIDE; | 170 gfx::Vector2dF current_fling_velocity) OVERRIDE; |
| 171 virtual void DidStopFlinging() OVERRIDE; |
| 171 virtual void ShowDisambiguationPopup(const gfx::Rect& target_rect, | 172 virtual void ShowDisambiguationPopup(const gfx::Rect& target_rect, |
| 172 const SkBitmap& zoomed_bitmap) OVERRIDE; | 173 const SkBitmap& zoomed_bitmap) OVERRIDE; |
| 173 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() | 174 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() |
| 174 OVERRIDE; | 175 OVERRIDE; |
| 175 | 176 |
| 176 // Implementation of BrowserAccessibilityDelegate: | 177 // Implementation of BrowserAccessibilityDelegate: |
| 177 virtual void SetAccessibilityFocus(int acc_obj_id) OVERRIDE; | 178 virtual void SetAccessibilityFocus(int acc_obj_id) OVERRIDE; |
| 178 virtual void AccessibilityDoDefaultAction(int acc_obj_id) OVERRIDE; | 179 virtual void AccessibilityDoDefaultAction(int acc_obj_id) OVERRIDE; |
| 179 virtual void AccessibilityScrollToMakeVisible( | 180 virtual void AccessibilityScrollToMakeVisible( |
| 180 int acc_obj_id, gfx::Rect subfocus) OVERRIDE; | 181 int acc_obj_id, gfx::Rect subfocus) OVERRIDE; |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 const bool using_synchronous_compositor_; | 349 const bool using_synchronous_compositor_; |
| 349 | 350 |
| 350 scoped_ptr<DelegatedFrameEvictor> frame_evictor_; | 351 scoped_ptr<DelegatedFrameEvictor> frame_evictor_; |
| 351 | 352 |
| 352 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 353 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
| 353 }; | 354 }; |
| 354 | 355 |
| 355 } // namespace content | 356 } // namespace content |
| 356 | 357 |
| 357 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 358 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
| OLD | NEW |