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_BASE_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ |
7 | 7 |
8 #if defined(OS_MACOSX) | 8 #if defined(OS_MACOSX) |
9 #include <OpenGL/OpenGL.h> | 9 #include <OpenGL/OpenGL.h> |
10 #endif | 10 #endif |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 InputEventAckState ack_result) OVERRIDE; | 68 InputEventAckState ack_result) OVERRIDE; |
69 virtual void SetPopupType(blink::WebPopupType popup_type) OVERRIDE; | 69 virtual void SetPopupType(blink::WebPopupType popup_type) OVERRIDE; |
70 virtual blink::WebPopupType GetPopupType() OVERRIDE; | 70 virtual blink::WebPopupType GetPopupType() OVERRIDE; |
71 virtual BrowserAccessibilityManager* | 71 virtual BrowserAccessibilityManager* |
72 GetBrowserAccessibilityManager() const OVERRIDE; | 72 GetBrowserAccessibilityManager() const OVERRIDE; |
73 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; | 73 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; |
74 virtual void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, | 74 virtual void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, |
75 InputEventAckState ack_result) OVERRIDE; | 75 InputEventAckState ack_result) OVERRIDE; |
76 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() | 76 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() |
77 OVERRIDE; | 77 OVERRIDE; |
| 78 virtual void FocusedNodeChanged(bool is_editable_node) OVERRIDE; |
78 virtual bool CanSubscribeFrame() const OVERRIDE; | 79 virtual bool CanSubscribeFrame() const OVERRIDE; |
79 virtual void BeginFrameSubscription( | 80 virtual void BeginFrameSubscription( |
80 scoped_ptr<RenderWidgetHostViewFrameSubscriber> subscriber) OVERRIDE; | 81 scoped_ptr<RenderWidgetHostViewFrameSubscriber> subscriber) OVERRIDE; |
81 virtual void EndFrameSubscription() OVERRIDE; | 82 virtual void EndFrameSubscription() OVERRIDE; |
82 virtual void OnSwapCompositorFrame( | 83 virtual void OnSwapCompositorFrame( |
83 uint32 output_surface_id, | 84 uint32 output_surface_id, |
84 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE {} | 85 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE {} |
85 virtual void ResizeCompositingSurface(const gfx::Size&) OVERRIDE {} | 86 virtual void ResizeCompositingSurface(const gfx::Size&) OVERRIDE {} |
86 virtual void OnOverscrolled(gfx::Vector2dF accumulated_overscroll, | 87 virtual void OnOverscrolled(gfx::Vector2dF accumulated_overscroll, |
87 gfx::Vector2dF current_fling_velocity) OVERRIDE; | 88 gfx::Vector2dF current_fling_velocity) OVERRIDE; |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 uint32 renderer_frame_number_; | 166 uint32 renderer_frame_number_; |
166 | 167 |
167 base::OneShotTimer<RenderWidgetHostViewBase> flush_input_timer_; | 168 base::OneShotTimer<RenderWidgetHostViewBase> flush_input_timer_; |
168 | 169 |
169 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase); | 170 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewBase); |
170 }; | 171 }; |
171 | 172 |
172 } // namespace content | 173 } // namespace content |
173 | 174 |
174 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ | 175 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_BASE_H_ |
OLD | NEW |