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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 bool LockMouse() override; | 188 bool LockMouse() override; |
189 void UnlockMouse() override; | 189 void UnlockMouse() override; |
190 void OnSwapCompositorFrame(uint32_t output_surface_id, | 190 void OnSwapCompositorFrame(uint32_t output_surface_id, |
191 scoped_ptr<cc::CompositorFrame> frame) override; | 191 scoped_ptr<cc::CompositorFrame> frame) override; |
192 void ClearCompositorFrame() override; | 192 void ClearCompositorFrame() override; |
193 void DidStopFlinging() override; | 193 void DidStopFlinging() override; |
194 void OnDidNavigateMainFrameToNewPage() override; | 194 void OnDidNavigateMainFrameToNewPage() override; |
195 void LockCompositingSurface() override; | 195 void LockCompositingSurface() override; |
196 void UnlockCompositingSurface() override; | 196 void UnlockCompositingSurface() override; |
197 uint32_t GetSurfaceIdNamespace() override; | 197 uint32_t GetSurfaceIdNamespace() override; |
198 uint32_t SurfaceIdNamespaceAtPoint(const gfx::Point& point, | 198 uint32_t SurfaceIdNamespaceAtPoint(cc::SurfaceHittestDelegate* delegate, |
| 199 const gfx::Point& point, |
199 gfx::Point* transformed_point) override; | 200 gfx::Point* transformed_point) override; |
200 void ProcessMouseEvent(const blink::WebMouseEvent& event) override; | 201 void ProcessMouseEvent(const blink::WebMouseEvent& event) override; |
201 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event) override; | 202 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event) override; |
202 void ProcessTouchEvent(const blink::WebTouchEvent& event, | 203 void ProcessTouchEvent(const blink::WebTouchEvent& event, |
203 const ui::LatencyInfo& latency) override; | 204 const ui::LatencyInfo& latency) override; |
204 void TransformPointToLocalCoordSpace(const gfx::Point& point, | 205 void TransformPointToLocalCoordSpace(const gfx::Point& point, |
205 cc::SurfaceId original_surface, | 206 cc::SurfaceId original_surface, |
206 gfx::Point* transformed_point) override; | 207 gfx::Point* transformed_point) override; |
207 | 208 |
208 #if defined(OS_WIN) | 209 #if defined(OS_WIN) |
(...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
700 float device_scale_factor_; | 701 float device_scale_factor_; |
701 | 702 |
702 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 703 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
703 | 704 |
704 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 705 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
705 }; | 706 }; |
706 | 707 |
707 } // namespace content | 708 } // namespace content |
708 | 709 |
709 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 710 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
OLD | NEW |