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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 virtual SyntheticGesture* CreateSmoothScrollGesture( | 230 virtual SyntheticGesture* CreateSmoothScrollGesture( |
231 bool scroll_down, | 231 bool scroll_down, |
232 int pixels_to_scroll, | 232 int pixels_to_scroll, |
233 int mouse_event_x, | 233 int mouse_event_x, |
234 int mouse_event_y) OVERRIDE; | 234 int mouse_event_y) OVERRIDE; |
235 virtual void SetHasHorizontalScrollbar( | 235 virtual void SetHasHorizontalScrollbar( |
236 bool has_horizontal_scrollbar) OVERRIDE; | 236 bool has_horizontal_scrollbar) OVERRIDE; |
237 virtual void SetScrollOffsetPinning( | 237 virtual void SetScrollOffsetPinning( |
238 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; | 238 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; |
239 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; | 239 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; |
240 virtual void OnAccessibilityNotifications( | 240 virtual void OnAccessibilityEvents( |
241 const std::vector<AccessibilityHostMsg_NotificationParams>& | 241 const std::vector<AccessibilityHostMsg_EventParams>& |
242 params) OVERRIDE; | 242 params) OVERRIDE; |
243 virtual bool LockMouse() OVERRIDE; | 243 virtual bool LockMouse() OVERRIDE; |
244 virtual void UnlockMouse() OVERRIDE; | 244 virtual void UnlockMouse() OVERRIDE; |
245 virtual void OnSwapCompositorFrame( | 245 virtual void OnSwapCompositorFrame( |
246 uint32 output_surface_id, | 246 uint32 output_surface_id, |
247 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; | 247 scoped_ptr<cc::CompositorFrame> frame) OVERRIDE; |
248 #if defined(OS_WIN) | 248 #if defined(OS_WIN) |
249 virtual void SetParentNativeViewAccessible( | 249 virtual void SetParentNativeViewAccessible( |
250 gfx::NativeViewAccessible accessible_parent) OVERRIDE; | 250 gfx::NativeViewAccessible accessible_parent) OVERRIDE; |
251 #endif | 251 #endif |
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
699 TouchEditingClient* touch_editing_client_; | 699 TouchEditingClient* touch_editing_client_; |
700 | 700 |
701 ui::LatencyInfo software_latency_info_; | 701 ui::LatencyInfo software_latency_info_; |
702 | 702 |
703 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 703 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
704 }; | 704 }; |
705 | 705 |
706 } // namespace content | 706 } // namespace content |
707 | 707 |
708 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 708 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
OLD | NEW |