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

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

Issue 11148008: touch-event queue: Add a touch-event queue for all platforms. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tot-merge Created 8 years, 2 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 | Annotate | Revision Log
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 <vector> 9 #include <vector>
10 10
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 int gpu_host_id) OVERRIDE; 120 int gpu_host_id) OVERRIDE;
121 virtual void AcceleratedSurfaceSuspend() OVERRIDE; 121 virtual void AcceleratedSurfaceSuspend() OVERRIDE;
122 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) OVERRIDE; 122 virtual bool HasAcceleratedSurface(const gfx::Size& desired_size) OVERRIDE;
123 virtual void AcceleratedSurfaceNew( 123 virtual void AcceleratedSurfaceNew(
124 int32 width_in_pixel, 124 int32 width_in_pixel,
125 int32 height_in_pixel, 125 int32 height_in_pixel,
126 uint64 surface_id) OVERRIDE; 126 uint64 surface_id) OVERRIDE;
127 virtual void AcceleratedSurfaceRelease(uint64 surface_id) OVERRIDE; 127 virtual void AcceleratedSurfaceRelease(uint64 surface_id) OVERRIDE;
128 virtual void GetScreenInfo(WebKit::WebScreenInfo* results) OVERRIDE; 128 virtual void GetScreenInfo(WebKit::WebScreenInfo* results) OVERRIDE;
129 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE; 129 virtual gfx::Rect GetBoundsInRootWindow() OVERRIDE;
130 virtual void ProcessTouchAck(bool processed) OVERRIDE; 130 virtual void ProcessAckedTouchEvent(const WebKit::WebTouchEvent& touch,
131 bool processed) OVERRIDE;
131 virtual void SetHasHorizontalScrollbar( 132 virtual void SetHasHorizontalScrollbar(
132 bool has_horizontal_scrollbar) OVERRIDE; 133 bool has_horizontal_scrollbar) OVERRIDE;
133 virtual void SetScrollOffsetPinning( 134 virtual void SetScrollOffsetPinning(
134 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE; 135 bool is_pinned_to_left, bool is_pinned_to_right) OVERRIDE;
135 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE; 136 virtual gfx::GLSurfaceHandle GetCompositingSurface() OVERRIDE;
136 virtual bool LockMouse() OVERRIDE; 137 virtual bool LockMouse() OVERRIDE;
137 virtual void UnlockMouse() OVERRIDE; 138 virtual void UnlockMouse() OVERRIDE;
138 139
139 // Overridden from ui::TextInputClient: 140 // Overridden from ui::TextInputClient:
140 virtual void SetCompositionText( 141 virtual void SetCompositionText(
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 // Used to track the state of the window we're created from. Only used when 392 // Used to track the state of the window we're created from. Only used when
392 // created fullscreen. 393 // created fullscreen.
393 scoped_ptr<aura::WindowTracker> host_tracker_; 394 scoped_ptr<aura::WindowTracker> host_tracker_;
394 395
395 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 396 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
396 }; 397 };
397 398
398 } // namespace content 399 } // namespace content
399 400
400 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 401 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698