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

Unified 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: fix-builds 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/ui_events_helper.h
diff --git a/content/browser/renderer_host/ui_events_helper.h b/content/browser/renderer_host/ui_events_helper.h
new file mode 100644
index 0000000000000000000000000000000000000000..545de9a1810ba786cbddf812c2ff2d4f281c9e8c
--- /dev/null
+++ b/content/browser/renderer_host/ui_events_helper.h
@@ -0,0 +1,23 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_BROWSER_RENDERER_HOST_UI_EVENTS_HELPER_H_
+#define CONTENT_BROWSER_RENDERER_HOST_UI_EVENTS_HELPER_H_
sadrul 2012/10/16 22:56:40 In a subsequent CL, I plan on moving the function
+
+#include "base/memory/scoped_vector.h"
+
+namespace WebKit {
+class WebTouchEvent;
+}
+
+namespace ui {
+class TouchEvent;
+}
+
+namespace content {
+bool MakeUITouchEventsFromWebTouchEvents(const WebKit::WebTouchEvent& touch,
+ ScopedVector<ui::TouchEvent>* list);
+}
+
+#endif // CONTENT_BROWSER_RENDERER_HOST_UI_EVENTS_HELPER_H_

Powered by Google App Engine
This is Rietveld 408576698