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

Unified Diff: ui/aura/root_window_host_delegate.h

Issue 10831240: Remove TouchEvent interface, and rename TouchEventImpl to TouchEvent (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge-tot Created 8 years, 4 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
« no previous file with comments | « ui/aura/root_window.cc ('k') | ui/aura/root_window_host_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/root_window_host_delegate.h
diff --git a/ui/aura/root_window_host_delegate.h b/ui/aura/root_window_host_delegate.h
index 1ebeb5feb7ef06c824c9bfeea4f63cde592138ce..6bc58522803b38052659a659536bb375b4046a64 100644
--- a/ui/aura/root_window_host_delegate.h
+++ b/ui/aura/root_window_host_delegate.h
@@ -13,7 +13,7 @@ namespace ui {
class KeyEvent;
class MouseEvent;
class ScrollEvent;
-class TouchEventImpl;
+class TouchEvent;
}
namespace aura {
@@ -27,7 +27,7 @@ class AURA_EXPORT RootWindowHostDelegate {
virtual bool OnHostKeyEvent(ui::KeyEvent* event) = 0;
virtual bool OnHostMouseEvent(ui::MouseEvent* event) = 0;
virtual bool OnHostScrollEvent(ui::ScrollEvent* event) = 0;
- virtual bool OnHostTouchEvent(ui::TouchEventImpl* event) = 0;
+ virtual bool OnHostTouchEvent(ui::TouchEvent* event) = 0;
virtual void OnHostLostCapture() = 0;
« no previous file with comments | « ui/aura/root_window.cc ('k') | ui/aura/root_window_host_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698