| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; | 178 gfx::NativeViewAccessible AccessibilityGetNativeViewAccessible() override; |
| 179 bool LockMouse() override; | 179 bool LockMouse() override; |
| 180 void UnlockMouse() override; | 180 void UnlockMouse() override; |
| 181 void OnSwapCompositorFrame(uint32_t compositor_frame_sink_id, | 181 void OnSwapCompositorFrame(uint32_t compositor_frame_sink_id, |
| 182 cc::CompositorFrame frame) override; | 182 cc::CompositorFrame frame) override; |
| 183 void ClearCompositorFrame() override; | 183 void ClearCompositorFrame() override; |
| 184 void DidStopFlinging() override; | 184 void DidStopFlinging() override; |
| 185 void OnDidNavigateMainFrameToNewPage() override; | 185 void OnDidNavigateMainFrameToNewPage() override; |
| 186 void LockCompositingSurface() override; | 186 void LockCompositingSurface() override; |
| 187 void UnlockCompositingSurface() override; | 187 void UnlockCompositingSurface() override; |
| 188 uint32_t GetSurfaceClientId() override; | 188 cc::FrameSinkId GetFrameSinkId() override; |
| 189 uint32_t SurfaceClientIdAtPoint(cc::SurfaceHittestDelegate* delegate, | 189 cc::FrameSinkId FrameSinkIdAtPoint(cc::SurfaceHittestDelegate* delegate, |
| 190 const gfx::Point& point, | 190 const gfx::Point& point, |
| 191 gfx::Point* transformed_point) override; | 191 gfx::Point* transformed_point) override; |
| 192 void ProcessMouseEvent(const blink::WebMouseEvent& event, | 192 void ProcessMouseEvent(const blink::WebMouseEvent& event, |
| 193 const ui::LatencyInfo& latency) override; | 193 const ui::LatencyInfo& latency) override; |
| 194 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event, | 194 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event, |
| 195 const ui::LatencyInfo& latency) override; | 195 const ui::LatencyInfo& latency) override; |
| 196 void ProcessTouchEvent(const blink::WebTouchEvent& event, | 196 void ProcessTouchEvent(const blink::WebTouchEvent& event, |
| 197 const ui::LatencyInfo& latency) override; | 197 const ui::LatencyInfo& latency) override; |
| 198 void ProcessGestureEvent(const blink::WebGestureEvent& event, | 198 void ProcessGestureEvent(const blink::WebGestureEvent& event, |
| 199 const ui::LatencyInfo& latency) override; | 199 const ui::LatencyInfo& latency) override; |
| 200 gfx::Point TransformPointToLocalCoordSpace( | 200 gfx::Point TransformPointToLocalCoordSpace( |
| 201 const gfx::Point& point, | 201 const gfx::Point& point, |
| (...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 int32_t last_active_widget_routing_id_; | 686 int32_t last_active_widget_routing_id_; |
| 687 | 687 |
| 688 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 688 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 689 | 689 |
| 690 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 690 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 691 }; | 691 }; |
| 692 | 692 |
| 693 } // namespace content | 693 } // namespace content |
| 694 | 694 |
| 695 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 695 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |