summaryrefslogtreecommitdiffstats
path: root/ui/aura/window_unittest.cc
diff options
context:
space:
mode:
authorsadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-10 16:21:44 +0000
committersadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-10 16:21:44 +0000
commit2487bee42ccd4deca3b08d9c267b4bb285f95d45 (patch)
tree5fec6ae9f10cea17fd452c45a3207cf62e97bbfd /ui/aura/window_unittest.cc
parenta9434345eaa19590174bf7bd262879b6a84232d6 (diff)
downloadchromium_src-2487bee42ccd4deca3b08d9c267b4bb285f95d45.zip
chromium_src-2487bee42ccd4deca3b08d9c267b4bb285f95d45.tar.gz
chromium_src-2487bee42ccd4deca3b08d9c267b4bb285f95d45.tar.bz2
Remove GestureEvent interface, and rename GestureEventImpl to GestureEvent.
This also includes some changes in RenderWidgetHostViewWin to change the way it creates gesture events. BUG=125937 Review URL: https://chromiumcodereview.appspot.com/10824247 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151044 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/aura/window_unittest.cc')
-rw-r--r--ui/aura/window_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/aura/window_unittest.cc b/ui/aura/window_unittest.cc
index afed3cd..668abad 100644
--- a/ui/aura/window_unittest.cc
+++ b/ui/aura/window_unittest.cc
@@ -175,7 +175,7 @@ class CaptureWindowDelegateImpl : public TestWindowDelegate {
return ui::TOUCH_STATUS_UNKNOWN;
}
virtual ui::GestureStatus OnGestureEvent(
- ui::GestureEventImpl* event) OVERRIDE {
+ ui::GestureEvent* event) OVERRIDE {
gesture_event_count_++;
return ui::GESTURE_STATUS_UNKNOWN;
}
@@ -218,7 +218,7 @@ class GestureTrackPositionDelegate : public TestWindowDelegate {
GestureTrackPositionDelegate() {}
virtual ui::GestureStatus OnGestureEvent(
- ui::GestureEventImpl* event) OVERRIDE {
+ ui::GestureEvent* event) OVERRIDE {
position_ = event->location();
return ui::GESTURE_STATUS_CONSUMED;
}