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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 virtual void GestureEventAck(const blink::WebGestureEvent& event, | 211 virtual void GestureEventAck(const blink::WebGestureEvent& event, |
212 InputEventAckState ack_result) OVERRIDE; | 212 InputEventAckState ack_result) OVERRIDE; |
213 virtual void ProcessAckedTouchEvent( | 213 virtual void ProcessAckedTouchEvent( |
214 const TouchEventWithLatencyInfo& touch, | 214 const TouchEventWithLatencyInfo& touch, |
215 InputEventAckState ack_result) OVERRIDE; | 215 InputEventAckState ack_result) OVERRIDE; |
216 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() | 216 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() |
217 OVERRIDE; | 217 OVERRIDE; |
218 virtual InputEventAckState FilterInputEvent( | 218 virtual InputEventAckState FilterInputEvent( |
219 const blink::WebInputEvent& input_event) OVERRIDE; | 219 const blink::WebInputEvent& input_event) OVERRIDE; |
220 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; | 220 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; |
221 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; | 221 virtual BrowserAccessibilityManager* CreateBrowserAccessibilityManager( |
| 222 BrowserAccessibilityDelegate* delegate) OVERRIDE; |
222 virtual bool LockMouse() OVERRIDE; | 223 virtual bool LockMouse() OVERRIDE; |
223 virtual void UnlockMouse() OVERRIDE; | 224 virtual void UnlockMouse() OVERRIDE; |
224 virtual void OnSwapCompositorFrame( | 225 virtual void OnSwapCompositorFrame( |
225 uint32 output_surface_id, | 226 uint32 output_surface_id, |
226 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; | 227 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; |
227 | 228 |
228 #if defined(OS_WIN) | 229 #if defined(OS_WIN) |
229 virtual void SetParentNativeViewAccessible( | 230 virtual void SetParentNativeViewAccessible( |
230 gfx::NativeViewAccessible accessible_parent) OVERRIDE; | 231 gfx::NativeViewAccessible accessible_parent) OVERRIDE; |
231 virtual gfx::NativeViewId GetParentForWindowlessPlugin() const OVERRIDE; | 232 virtual gfx::NativeViewId GetParentForWindowlessPlugin() const OVERRIDE; |
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
593 scoped_ptr<aura::client::ScopedTooltipDisabler> tooltip_disabler_; | 594 scoped_ptr<aura::client::ScopedTooltipDisabler> tooltip_disabler_; |
594 | 595 |
595 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 596 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
596 | 597 |
597 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 598 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
598 }; | 599 }; |
599 | 600 |
600 } // namespace content | 601 } // namespace content |
601 | 602 |
602 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 603 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
OLD | NEW |