OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "ui/aura/event_filter.h" | 5 #include "ui/aura/event_filter.h" |
6 | 6 |
7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "ui/aura/desktop.h" | 9 #include "ui/aura/desktop.h" |
10 #include "ui/aura/event.h" | 10 #include "ui/aura/event.h" |
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 EXPECT_EQ(0, w111_filter->mouse_event_count()); | 202 EXPECT_EQ(0, w111_filter->mouse_event_count()); |
203 EXPECT_EQ(0, d1111->mouse_event_count()); | 203 EXPECT_EQ(0, d1111->mouse_event_count()); |
204 EXPECT_EQ(0, desktop_filter->touch_event_count()); | 204 EXPECT_EQ(0, desktop_filter->touch_event_count()); |
205 EXPECT_EQ(0, w1_filter->touch_event_count()); | 205 EXPECT_EQ(0, w1_filter->touch_event_count()); |
206 EXPECT_EQ(0, w111_filter->touch_event_count()); | 206 EXPECT_EQ(0, w111_filter->touch_event_count()); |
207 EXPECT_EQ(0, d1111->touch_event_count()); | 207 EXPECT_EQ(0, d1111->touch_event_count()); |
208 } | 208 } |
209 | 209 |
210 } // namespace test | 210 } // namespace test |
211 } // namespace aura | 211 } // namespace aura |
212 | |
OLD | NEW |