| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(cc::SurfaceHittestDelegate* delegate, |
| 199 const gfx::Point& point, | 199 const gfx::Point& point, |
| 200 gfx::Point* transformed_point) override; | 200 gfx::Point* transformed_point) override; |
| 201 void ProcessMouseEvent(const blink::WebMouseEvent& event) override; | 201 void ProcessMouseEvent(const blink::WebMouseEvent& event) override; |
| 202 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event) override; | 202 void ProcessMouseWheelEvent(const blink::WebMouseWheelEvent& event) 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, |
| 206 const ui::LatencyInfo& latency) override; |
| 205 void TransformPointToLocalCoordSpace(const gfx::Point& point, | 207 void TransformPointToLocalCoordSpace(const gfx::Point& point, |
| 206 cc::SurfaceId original_surface, | 208 cc::SurfaceId original_surface, |
| 207 gfx::Point* transformed_point) override; | 209 gfx::Point* transformed_point) override; |
| 208 | 210 |
| 209 #if defined(OS_WIN) | 211 #if defined(OS_WIN) |
| 210 void SetParentNativeViewAccessible( | 212 void SetParentNativeViewAccessible( |
| 211 gfx::NativeViewAccessible accessible_parent) override; | 213 gfx::NativeViewAccessible accessible_parent) override; |
| 212 gfx::NativeViewId GetParentForWindowlessPlugin() const override; | 214 gfx::NativeViewId GetParentForWindowlessPlugin() const override; |
| 213 #endif | 215 #endif |
| 214 | 216 |
| (...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 704 float device_scale_factor_; | 706 float device_scale_factor_; |
| 705 | 707 |
| 706 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 708 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 707 | 709 |
| 708 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 710 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 709 }; | 711 }; |
| 710 | 712 |
| 711 } // namespace content | 713 } // namespace content |
| 712 | 714 |
| 713 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 715 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |