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