Chromium Code Reviews| OLD | NEW |
|---|---|
| (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_ | |
|
sadrul
2012/10/16 22:56:40
In a subsequent CL, I plan on moving the function
| |
| 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, | |
| 20 ScopedVector<ui::TouchEvent>* list); | |
| 21 } | |
| 22 | |
| 23 #endif // CONTENT_BROWSER_RENDERER_HOST_UI_EVENTS_HELPER_H_ | |
| OLD | NEW |