| 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 std::unique_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() | 182 std::unique_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() |
| 183 override; | 183 override; |
| 184 InputEventAckState FilterInputEvent( | 184 InputEventAckState FilterInputEvent( |
| 185 const blink::WebInputEvent& input_event) override; | 185 const blink::WebInputEvent& input_event) override; |
| 186 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( | 186 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( |
| 187 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override; | 187 BrowserAccessibilityDelegate* delegate, bool for_root_frame) override; |
| 188 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; | 188 gfx::AcceleratedWidget AccessibilityGetAcceleratedWidget() override; |
| 189 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; | 189 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; |
| 190 bool LockMouse() override; | 190 bool LockMouse() override; |
| 191 void UnlockMouse() override; | 191 void UnlockMouse() override; |
| 192 void OnSwapCompositorFrame( | 192 void OnSwapCompositorFrame(uint32_t output_surface_id, |
| 193 uint32_t output_surface_id, | 193 cc::CompositorFrame frame) override; |
| 194 std::unique_ptr<cc::CompositorFrame> frame) override; | |
| 195 void ClearCompositorFrame() override; | 194 void ClearCompositorFrame() override; |
| 196 void DidStopFlinging() override; | 195 void DidStopFlinging() override; |
| 197 void OnDidNavigateMainFrameToNewPage() override; | 196 void OnDidNavigateMainFrameToNewPage() override; |
| 198 void LockCompositingSurface() override; | 197 void LockCompositingSurface() override; |
| 199 void UnlockCompositingSurface() override; | 198 void UnlockCompositingSurface() override; |
| 200 uint32_t GetSurfaceIdNamespace() override; | 199 uint32_t GetSurfaceIdNamespace() override; |
| 201 uint32_t SurfaceIdNamespaceAtPoint(cc::SurfaceHittestDelegate* delegate, | 200 uint32_t SurfaceIdNamespaceAtPoint(cc::SurfaceHittestDelegate* delegate, |
| 202 const gfx::Point& point, | 201 const gfx::Point& point, |
| 203 gfx::Point* transformed_point) override; | 202 gfx::Point* transformed_point) override; |
| 204 void ProcessMouseEvent(const blink::WebMouseEvent& event, | 203 void ProcessMouseEvent(const blink::WebMouseEvent& event, |
| (...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 694 bool disable_input_event_router_for_testing_; | 693 bool disable_input_event_router_for_testing_; |
| 695 | 694 |
| 696 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 695 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 697 | 696 |
| 698 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 697 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 699 }; | 698 }; |
| 700 | 699 |
| 701 } // namespace content | 700 } // namespace content |
| 702 | 701 |
| 703 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 702 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |