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