| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, | 155 void ProcessAckedTouchEvent(const TouchEventWithLatencyInfo& touch, |
| 156 InputEventAckState ack_result) override; | 156 InputEventAckState ack_result) override; |
| 157 std::unique_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() | 157 std::unique_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() |
| 158 override; | 158 override; |
| 159 InputEventAckState FilterInputEvent( | 159 InputEventAckState FilterInputEvent( |
| 160 const blink::WebInputEvent& input_event) override; | 160 const blink::WebInputEvent& input_event) override; |
| 161 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( | 161 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( |
| 162 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override; | 162 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override; |
| 163 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; | 163 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; |
| 164 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; | 164 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; |
| 165 void UpdateAXTreeID(ui::AXTreeIDRegistry::AXTreeID id) override; |
| 165 bool LockMouse() override; | 166 bool LockMouse() override; |
| 166 void UnlockMouse() override; | 167 void UnlockMouse() override; |
| 167 void OnSwapCompositorFrame(uint32_t compositor_frame_sink_id, | 168 void OnSwapCompositorFrame(uint32_t compositor_frame_sink_id, |
| 168 cc::CompositorFrame frame) override; | 169 cc::CompositorFrame frame) override; |
| 169 void ClearCompositorFrame() override; | 170 void ClearCompositorFrame() override; |
| 170 void DidStopFlinging() override; | 171 void DidStopFlinging() override; |
| 171 void OnDidNavigateMainFrameToNewPage() override; | 172 void OnDidNavigateMainFrameToNewPage() override; |
| 172 cc::FrameSinkId GetFrameSinkId() override; | 173 cc::FrameSinkId GetFrameSinkId() override; |
| 173 cc::FrameSinkId FrameSinkIdAtPoint(cc::SurfaceHittestDelegate* delegate, | 174 cc::FrameSinkId FrameSinkIdAtPoint(cc::SurfaceHittestDelegate* delegate, |
| 174 const gfx::Point& point, | 175 const gfx::Point& point, |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 585 std::unique_ptr<RenderWidgetHostViewEventHandler> event_handler_; | 586 std::unique_ptr<RenderWidgetHostViewEventHandler> event_handler_; |
| 586 | 587 |
| 587 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 588 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 588 | 589 |
| 589 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 590 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 590 }; | 591 }; |
| 591 | 592 |
| 592 } // namespace content | 593 } // namespace content |
| 593 | 594 |
| 594 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 595 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |