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_ |