| 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(cc::SurfaceHittestDelegate* delegate, | 198 uint32_t SurfaceIdNamespaceAtPoint(const gfx::Point& point, |
| 199 const gfx::Point& point, | |
| 200 gfx::Point* transformed_point) override; | 199 gfx::Point* transformed_point) override; |
| 201 void ProcessMouseEvent(const blink::WebMouseEvent& event) override; | 200 void ProcessMouseEvent(const blink::WebMouseEvent& event) override; |
| 202 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event) override; | 201 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event) override; |
| 203 void ProcessTouchEvent(const blink::WebTouchEvent& event, | 202 void ProcessTouchEvent(const blink::WebTouchEvent& event, |
| 204 const ui::LatencyInfo& latency) override; | 203 const ui::LatencyInfo& latency) override; |
| 205 void TransformPointToLocalCoordSpace(const gfx::Point& point, | 204 void TransformPointToLocalCoordSpace(const gfx::Point& point, |
| 206 cc::SurfaceId original_surface, | 205 cc::SurfaceId original_surface, |
| 207 gfx::Point* transformed_point) override; | 206 gfx::Point* transformed_point) override; |
| 208 | 207 |
| 209 #if defined(OS_WIN) | 208 #if defined(OS_WIN) |
| (...skipping 491 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 701 float device_scale_factor_; | 700 float device_scale_factor_; |
| 702 | 701 |
| 703 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 702 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 704 | 703 |
| 705 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 704 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 706 }; | 705 }; |
| 707 | 706 |
| 708 } // namespace content | 707 } // namespace content |
| 709 | 708 |
| 710 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 709 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |