| 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 <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 virtual void AcceleratedSurfaceSuspend() OVERRIDE; | 223 virtual void AcceleratedSurfaceSuspend() OVERRIDE; |
| 224 virtual void AcceleratedSurfaceRelease() OVERRIDE; | 224 virtual void AcceleratedSurfaceRelease() OVERRIDE; |
| 225 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) OVERRIDE; | 225 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) OVERRIDE; |
| 226 virtual void GetScreenInfo(WebKit::WebScreenInfo* results) OVERRIDE; | 226 virtual void GetScreenInfo(WebKit::WebScreenInfo* results) OVERRIDE; |
| 227 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; | 227 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; |
| 228 virtual void GestureEventAck(int gesture_event_type, | 228 virtual void GestureEventAck(int gesture_event_type, |
| 229 InputEventAckState ack_result) OVERRIDE; | 229 InputEventAckState ack_result) OVERRIDE; |
| 230 virtual void ProcessAckedTouchEvent( | 230 virtual void ProcessAckedTouchEvent( |
| 231 const TouchEventWithLatencyInfo& touch, | 231 const TouchEventWithLatencyInfo& touch, |
| 232 InputEventAckState ack_result) OVERRIDE; | 232 InputEventAckState ack_result) OVERRIDE; |
| 233 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() |
| 234 OVERRIDE; |
| 233 virtual SyntheticGesture* CreateSmoothScrollGesture( | 235 virtual SyntheticGesture* CreateSmoothScrollGesture( |
| 234 bool scroll_down, | 236 bool scroll_down, |
| 235 int pixels_to_scroll, | 237 int pixels_to_scroll, |
| 236 int mouse_event_x, | 238 int mouse_event_x, |
| 237 int mouse_event_y) OVERRIDE; | 239 int mouse_event_y) OVERRIDE; |
| 238 virtual void SetHasHorizontalScrollbar( | 240 virtual void SetHasHorizontalScrollbar( |
| 239 bool has_horizontal_scrollbar) OVERRIDE; | 241 bool has_horizontal_scrollbar) OVERRIDE; |
| 240 virtual void SetScrollOffsetPinning( | 242 virtual void SetScrollOffsetPinning( |
| 241 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; | 243 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; |
| 242 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; | 244 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; |
| (...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 768 scoped_ptr<ReleasedFrameInfo> released_software_frame_; | 770 scoped_ptr<ReleasedFrameInfo> released_software_frame_; |
| 769 scoped_ptr<DelegatedFrameEvictor> delegated_frame_evictor_; | 771 scoped_ptr<DelegatedFrameEvictor> delegated_frame_evictor_; |
| 770 | 772 |
| 771 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; | 773 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; |
| 772 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 774 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 773 }; | 775 }; |
| 774 | 776 |
| 775 } // namespace content | 777 } // namespace content |
| 776 | 778 |
| 777 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 779 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |