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_AURA_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 virtual void GestureEventAck(const blink::WebGestureEvent& event, | 208 virtual void GestureEventAck(const blink::WebGestureEvent& event, |
209 InputEventAckState ack_result) OVERRIDE; | 209 InputEventAckState ack_result) OVERRIDE; |
210 virtual void ProcessAckedTouchEvent( | 210 virtual void ProcessAckedTouchEvent( |
211 const TouchEventWithLatencyInfo& touch, | 211 const TouchEventWithLatencyInfo& touch, |
212 InputEventAckState ack_result) OVERRIDE; | 212 InputEventAckState ack_result) OVERRIDE; |
213 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() | 213 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() |
214 OVERRIDE; | 214 OVERRIDE; |
215 virtual void SetScrollOffsetPinning( | 215 virtual void SetScrollOffsetPinning( |
216 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; | 216 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; |
217 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; | 217 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; |
218 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; | 218 virtual void CreateBrowserAccessibilityManagerIfNeeded( |
| 219 BrowserAccessibilityDelegate* delegate) OVERRIDE; |
219 virtual bool LockMouse() OVERRIDE; | 220 virtual bool LockMouse() OVERRIDE; |
220 virtual void UnlockMouse() OVERRIDE; | 221 virtual void UnlockMouse() OVERRIDE; |
221 virtual void OnSwapCompositorFrame( | 222 virtual void OnSwapCompositorFrame( |
222 uint32 output_surface_id, | 223 uint32 output_surface_id, |
223 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; | 224 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; |
224 | 225 |
225 #if defined(OS_WIN) | 226 #if defined(OS_WIN) |
226 virtual void SetParentNativeViewAccessible( | 227 virtual void SetParentNativeViewAccessible( |
227 gfx::NativeViewAccessible accessible_parent) OVERRIDE; | 228 gfx::NativeViewAccessible accessible_parent) OVERRIDE; |
228 virtual gfx::NativeViewId GetParentForWindowlessPlugin() const OVERRIDE; | 229 virtual gfx::NativeViewId GetParentForWindowlessPlugin() const OVERRIDE; |
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
563 // etc. | 564 // etc. |
564 scoped_ptr<content::LegacyRenderWidgetHostHWND> | 565 scoped_ptr<content::LegacyRenderWidgetHostHWND> |
565 legacy_render_widget_host_HWND_; | 566 legacy_render_widget_host_HWND_; |
566 #endif | 567 #endif |
567 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 568 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
568 }; | 569 }; |
569 | 570 |
570 } // namespace content | 571 } // namespace content |
571 | 572 |
572 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 573 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
OLD | NEW |