| 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 174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; | 185 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; |
| 186 bool LockMouse() override; | 186 bool LockMouse() override; |
| 187 void UnlockMouse() override; | 187 void UnlockMouse() override; |
| 188 void OnSwapCompositorFrame(uint32_t output_surface_id, | 188 void OnSwapCompositorFrame(uint32_t output_surface_id, |
| 189 cc::CompositorFrame frame) override; | 189 cc::CompositorFrame frame) override; |
| 190 void ClearCompositorFrame() override; | 190 void ClearCompositorFrame() override; |
| 191 void DidStopFlinging() override; | 191 void DidStopFlinging() override; |
| 192 void OnDidNavigateMainFrameToNewPage() override; | 192 void OnDidNavigateMainFrameToNewPage() override; |
| 193 void LockCompositingSurface() override; | 193 void LockCompositingSurface() override; |
| 194 void UnlockCompositingSurface() override; | 194 void UnlockCompositingSurface() override; |
| 195 uint32_t GetSurfaceIdNamespace() override; | 195 uint32_t GetSurfaceClientId() override; |
| 196 uint32_t SurfaceIdNamespaceAtPoint(cc::SurfaceHittestDelegate* delegate, | 196 uint32_t SurfaceClientIdAtPoint(cc::SurfaceHittestDelegate* delegate, |
| 197 const gfx::Point& point, | 197 const gfx::Point& point, |
| 198 gfx::Point* transformed_point) override; | 198 gfx::Point* transformed_point) override; |
| 199 void ProcessMouseEvent(const blink::WebMouseEvent& event, | 199 void ProcessMouseEvent(const blink::WebMouseEvent& event, |
| 200 const ui::LatencyInfo& latency) override; | 200 const ui::LatencyInfo& latency) override; |
| 201 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event, | 201 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event, |
| 202 const ui::LatencyInfo& latency) override; | 202 const ui::LatencyInfo& latency) override; |
| 203 void ProcessTouchEvent(const blink::WebTouchEvent& event, | 203 void ProcessTouchEvent(const blink::WebTouchEvent& event, |
| 204 const ui::LatencyInfo& latency) override; | 204 const ui::LatencyInfo& latency) override; |
| 205 void ProcessGestureEvent(const blink::WebGestureEvent& event, | 205 void ProcessGestureEvent(const blink::WebGestureEvent& event, |
| 206 const ui::LatencyInfo& latency) override; | 206 const ui::LatencyInfo& latency) override; |
| 207 void TransformPointToLocalCoordSpace(const gfx::Point& point, | 207 void TransformPointToLocalCoordSpace(const gfx::Point& point, |
| 208 cc::SurfaceId original_surface, | 208 cc::SurfaceId original_surface, |
| (...skipping 482 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 691 bool disable_input_event_router_for_testing_; | 691 bool disable_input_event_router_for_testing_; |
| 692 | 692 |
| 693 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 693 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 694 | 694 |
| 695 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 695 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 696 }; | 696 }; |
| 697 | 697 |
| 698 } // namespace content | 698 } // namespace content |
| 699 | 699 |
| 700 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 700 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |