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

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

Issue 11188012: gesture recognizer: Remove the touch-event queue. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_BROWSER_RENDERER_HOST_UI_EVENTS_HELPER_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_UI_EVENTS_HELPER_H_
7
8 #include "base/memory/scoped_vector.h"
9
10 namespace WebKit {
11 class WebTouchEvent;
12 }
13
14 namespace ui {
15 class TouchEvent;
16 }
17
18 namespace content {
19 bool MakeUITouchEventsFromWebTouchEvents(const WebKit::WebTouchEvent& touch,
rjkroege 2012/10/17 15:57:35 Perhaps you could a why comment?
sadrul 2012/10/17 16:12:45 Done.
20 ScopedVector<ui::TouchEvent>* list);
21 }
22
23 #endif // CONTENT_BROWSER_RENDERER_HOST_UI_EVENTS_HELPER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698