| 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 <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; | 208 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; |
| 209 virtual void WheelEventAck(const blink::WebMouseWheelEvent& event, | 209 virtual void WheelEventAck(const blink::WebMouseWheelEvent& event, |
| 210 InputEventAckState ack_result) OVERRIDE; | 210 InputEventAckState ack_result) OVERRIDE; |
| 211 virtual void GestureEventAck(const blink::WebGestureEvent& event, | 211 virtual void GestureEventAck(const blink::WebGestureEvent& event, |
| 212 InputEventAckState ack_result) OVERRIDE; | 212 InputEventAckState ack_result) OVERRIDE; |
| 213 virtual void ProcessAckedTouchEvent( | 213 virtual void ProcessAckedTouchEvent( |
| 214 const TouchEventWithLatencyInfo& touch, | 214 const TouchEventWithLatencyInfo& touch, |
| 215 InputEventAckState ack_result) OVERRIDE; | 215 InputEventAckState ack_result) OVERRIDE; |
| 216 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() | 216 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() |
| 217 OVERRIDE; | 217 OVERRIDE; |
| 218 virtual void SetScrollOffsetPinning( | |
| 219 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; | |
| 220 virtual InputEventAckState FilterInputEvent( | 218 virtual InputEventAckState FilterInputEvent( |
| 221 const blink::WebInputEvent& input_event) OVERRIDE; | 219 const blink::WebInputEvent& input_event) OVERRIDE; |
| 222 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; | 220 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; |
| 223 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; | 221 virtual void CreateBrowserAccessibilityManagerIfNeeded() OVERRIDE; |
| 224 virtual bool LockMouse() OVERRIDE; | 222 virtual bool LockMouse() OVERRIDE; |
| 225 virtual void UnlockMouse() OVERRIDE; | 223 virtual void UnlockMouse() OVERRIDE; |
| 226 virtual void OnSwapCompositorFrame( | 224 virtual void OnSwapCompositorFrame( |
| 227 uint32 output_surface_id, | 225 uint32 output_surface_id, |
| 228 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; | 226 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; |
| 229 | 227 |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 586 // etc. | 584 // etc. |
| 587 scoped_ptr<content::LegacyRenderWidgetHostHWND> | 585 scoped_ptr<content::LegacyRenderWidgetHostHWND> |
| 588 legacy_render_widget_host_HWND_; | 586 legacy_render_widget_host_HWND_; |
| 589 #endif | 587 #endif |
| 590 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 588 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 591 }; | 589 }; |
| 592 | 590 |
| 593 } // namespace content | 591 } // namespace content |
| 594 | 592 |
| 595 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 593 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |