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

Unified Diff: ui/aura/root_window_unittest.cc

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_host_linux.cc ('k') | ui/aura/shared/compound_event_filter.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/root_window_unittest.cc
diff --git a/ui/aura/root_window_unittest.cc b/ui/aura/root_window_unittest.cc
index c280653463a3f7be4bee0a30824815084601b8d1..c236ea4d5ba1b5a9f3e076727ad9afb2bcd3c059 100644
--- a/ui/aura/root_window_unittest.cc
+++ b/ui/aura/root_window_unittest.cc
@@ -91,7 +91,7 @@ class EventCountFilter : public EventFilter {
return true;
}
virtual ui::TouchStatus PreHandleTouchEvent(
- Window* target, ui::TouchEventImpl* event) OVERRIDE {
+ Window* target, ui::TouchEvent* event) OVERRIDE {
return ui::TOUCH_STATUS_UNKNOWN;
}
virtual ui::GestureStatus PreHandleGestureEvent(
@@ -368,7 +368,7 @@ class EventFilterRecorder : public EventFilter {
}
virtual ui::TouchStatus PreHandleTouchEvent(
Window* target,
- ui::TouchEventImpl* event) OVERRIDE {
+ ui::TouchEvent* event) OVERRIDE {
events_.push_back(event->type());
return ui::TOUCH_STATUS_UNKNOWN;
}
« no previous file with comments | « ui/aura/root_window_host_linux.cc ('k') | ui/aura/shared/compound_event_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698