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 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( | 221 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; |
222 BrowserAccessibilityDelegate* delegate) OVERRIDE; | |
223 virtual bool LockMouse() OVERRIDE; | 222 virtual bool LockMouse() OVERRIDE; |
224 virtual void UnlockMouse() OVERRIDE; | 223 virtual void UnlockMouse() OVERRIDE; |
225 virtual void OnSwapCompositorFrame( | 224 virtual void OnSwapCompositorFrame( |
226 uint32 output_surface_id, | 225 uint32 output_surface_id, |
227 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; | 226 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; |
228 | 227 |
229 #if defined(OS_WIN) | 228 #if defined(OS_WIN) |
230 virtual void SetParentNativeViewAccessible( | 229 virtual void SetParentNativeViewAccessible( |
231 gfx::NativeViewAccessible accessible_parent) OVERRIDE; | 230 gfx::NativeViewAccessible accessible_parent) OVERRIDE; |
232 virtual gfx::NativeViewId GetParentForWindowlessPlugin() const OVERRIDE; | 231 virtual gfx::NativeViewId GetParentForWindowlessPlugin() const OVERRIDE; |
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
594 scoped_ptr<aura::client::ScopedTooltipDisabler> tooltip_disabler_; | 593 scoped_ptr<aura::client::ScopedTooltipDisabler> tooltip_disabler_; |
595 | 594 |
596 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 595 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
597 | 596 |
598 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 597 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
599 }; | 598 }; |
600 | 599 |
601 } // namespace content | 600 } // namespace content |
602 | 601 |
603 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 602 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
OLD | NEW |