Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(607)

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_aura.h

Issue 120513005: [Android] Perform eager gesture recognition on MotionEvents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Findbugs fix Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params_in_pixel, 226 const GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params& params_in_pixel,
227 int gpu_host_id) OVERRIDE; 227 int gpu_host_id) OVERRIDE;
228 virtual void AcceleratedSurfacePostSubBuffer( 228 virtual void AcceleratedSurfacePostSubBuffer(
229 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params_in_pixel, 229 const GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params& params_in_pixel,
230 int gpu_host_id) OVERRIDE; 230 int gpu_host_id) OVERRIDE;
231 virtual void AcceleratedSurfaceSuspend() OVERRIDE; 231 virtual void AcceleratedSurfaceSuspend() OVERRIDE;
232 virtual void AcceleratedSurfaceRelease() OVERRIDE; 232 virtual void AcceleratedSurfaceRelease() OVERRIDE;
233 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) OVERRIDE; 233 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) OVERRIDE;
234 virtual void GetScreenInfo(blink::WebScreenInfo* results) OVERRIDE; 234 virtual void GetScreenInfo(blink::WebScreenInfo* results) OVERRIDE;
235 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; 235 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE;
236 virtual void GestureEventAck(int gesture_event_type, 236 virtual void GestureEventAck(const blink::WebGestureEvent& event,
237 InputEventAckState ack_result) OVERRIDE; 237 InputEventAckState ack_result) OVERRIDE;
238 virtual void ProcessAckedTouchEvent( 238 virtual void ProcessAckedTouchEvent(
239 const TouchEventWithLatencyInfo& touch, 239 const TouchEventWithLatencyInfo& touch,
240 InputEventAckState ack_result) OVERRIDE; 240 InputEventAckState ack_result) OVERRIDE;
241 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget() 241 virtual scoped_ptr<SyntheticGestureTarget> CreateSyntheticGestureTarget()
242 OVERRIDE; 242 OVERRIDE;
243 virtual void SetHasHorizontalScrollbar( 243 virtual void SetHasHorizontalScrollbar(
244 bool has_horizontal_scrollbar) OVERRIDE; 244 bool has_horizontal_scrollbar) OVERRIDE;
245 virtual void SetScrollOffsetPinning( 245 virtual void SetScrollOffsetPinning(
246 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; 246 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE;
(...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after
801 // passed to windowless plugins like Flash/Silverlight, etc as the 801 // passed to windowless plugins like Flash/Silverlight, etc as the
802 // container window. 802 // container window.
803 HWND plugin_parent_window_; 803 HWND plugin_parent_window_;
804 #endif 804 #endif
805 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 805 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
806 }; 806 };
807 807
808 } // namespace content 808 } // namespace content
809 809
810 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 810 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698