| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 ShowDisambiguationPopup(const gfx::Rect& target_rect, | 171 virtual void ShowDisambiguationPopup(const gfx::Rect& target_rect, |
| 172 const SkBitmap& zoomed_bitmap) OVERRIDE; | 172 const SkBitmap& zoomed_bitmap) OVERRIDE; |
| 173 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() | 173 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() |
| 174 OVERRIDE; | 174 OVERRIDE; |
| 175 virtual void DidFinishTopControlsGesture() 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; |
| 181 virtual void AccessibilityScrollToPoint( | 182 virtual void AccessibilityScrollToPoint( |
| 182 int acc_obj_id, gfx::Point point) OVERRIDE; | 183 int acc_obj_id, gfx::Point point) OVERRIDE; |
| 183 virtual void AccessibilitySetTextSelection( | 184 virtual void AccessibilitySetTextSelection( |
| 184 int acc_obj_id, int start_offset, int end_offset) OVERRIDE; | 185 int acc_obj_id, int start_offset, int end_offset) OVERRIDE; |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 const bool using_synchronous_compositor_; | 351 const bool using_synchronous_compositor_; |
| 351 | 352 |
| 352 scoped_ptr<DelegatedFrameEvictor> frame_evictor_; | 353 scoped_ptr<DelegatedFrameEvictor> frame_evictor_; |
| 353 | 354 |
| 354 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); | 355 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAndroid); |
| 355 }; | 356 }; |
| 356 | 357 |
| 357 } // namespace content | 358 } // namespace content |
| 358 | 359 |
| 359 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ | 360 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_ANDROID_H_ |
| OLD | NEW |