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

Side by Side Diff: ash/wm/user_activity_detector_unittest.cc

Issue 10834269: gestures: Some more event cleanup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tot-merge 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ash/wm/user_activity_detector.h" 5 #include "ash/wm/user_activity_detector.h"
6 6
7 #include "ash/shell.h" 7 #include "ash/shell.h"
8 #include "ash/test/ash_test_base.h" 8 #include "ash/test/ash_test_base.h"
9 #include "ash/wm/user_activity_observer.h" 9 #include "ash/wm/user_activity_observer.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 98
99 AdvanceTime(advance_delta); 99 AdvanceTime(advance_delta);
100 ui::TouchEvent touch_event( 100 ui::TouchEvent touch_event(
101 ui::ET_TOUCH_PRESSED, gfx::Point(), 0, base::TimeDelta()); 101 ui::ET_TOUCH_PRESSED, gfx::Point(), 0, base::TimeDelta());
102 EXPECT_FALSE(detector_->PreHandleTouchEvent(window.get(), &touch_event)); 102 EXPECT_FALSE(detector_->PreHandleTouchEvent(window.get(), &touch_event));
103 EXPECT_EQ(1, observer_->num_invocations()); 103 EXPECT_EQ(1, observer_->num_invocations());
104 observer_->reset_stats(); 104 observer_->reset_stats();
105 105
106 AdvanceTime(advance_delta); 106 AdvanceTime(advance_delta);
107 ui::GestureEvent gesture_event( 107 ui::GestureEvent gesture_event(
108 ui::ET_GESTURE_TAP, 0, 0, ui::EF_NONE, base::Time(), 108 ui::ET_GESTURE_TAP, 0, 0, ui::EF_NONE,
109 base::TimeDelta::FromMilliseconds(base::Time::Now().ToDoubleT() * 1000),
109 ui::GestureEventDetails(ui::ET_GESTURE_TAP, 0, 0), 0U); 110 ui::GestureEventDetails(ui::ET_GESTURE_TAP, 0, 0), 0U);
110 EXPECT_FALSE(detector_->PreHandleGestureEvent(window.get(), &gesture_event)); 111 EXPECT_FALSE(detector_->PreHandleGestureEvent(window.get(), &gesture_event));
111 EXPECT_EQ(1, observer_->num_invocations()); 112 EXPECT_EQ(1, observer_->num_invocations());
112 observer_->reset_stats(); 113 observer_->reset_stats();
113 } 114 }
114 115
115 // Checks that observers aren't notified too frequently. 116 // Checks that observers aren't notified too frequently.
116 TEST_F(UserActivityDetectorTest, RateLimitNotifications) { 117 TEST_F(UserActivityDetectorTest, RateLimitNotifications) {
117 scoped_ptr<aura::Window> window( 118 scoped_ptr<aura::Window> window(
118 aura::test::CreateTestWindowWithId(12345, NULL)); 119 aura::test::CreateTestWindowWithId(12345, NULL));
(...skipping 29 matching lines...) Expand all
148 scoped_ptr<aura::Window> window( 149 scoped_ptr<aura::Window> window(
149 aura::test::CreateTestWindowWithId(12345, NULL)); 150 aura::test::CreateTestWindowWithId(12345, NULL));
150 ui::MouseEvent mouse_event( 151 ui::MouseEvent mouse_event(
151 ui::ET_MOUSE_MOVED, gfx::Point(), gfx::Point(), ui::EF_IS_SYNTHESIZED); 152 ui::ET_MOUSE_MOVED, gfx::Point(), gfx::Point(), ui::EF_IS_SYNTHESIZED);
152 EXPECT_FALSE(detector_->PreHandleMouseEvent(window.get(), &mouse_event)); 153 EXPECT_FALSE(detector_->PreHandleMouseEvent(window.get(), &mouse_event));
153 EXPECT_EQ(0, observer_->num_invocations()); 154 EXPECT_EQ(0, observer_->num_invocations());
154 } 155 }
155 156
156 } // namespace test 157 } // namespace test
157 } // namespace ash 158 } // namespace ash
OLDNEW
« no previous file with comments | « ash/wm/system_gesture_event_filter_unittest.cc ('k') | content/browser/renderer_host/render_widget_host_view_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698