| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef UI_CHROMEOS_TOUCH_EXPLORATION_CONTROLLER_H_ | 5 #ifndef UI_CHROMEOS_TOUCH_EXPLORATION_CONTROLLER_H_ |
| 6 #define UI_CHROMEOS_TOUCH_EXPLORATION_CONTROLLER_H_ | 6 #define UI_CHROMEOS_TOUCH_EXPLORATION_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" |
| 8 #include "base/time/tick_clock.h" | 9 #include "base/time/tick_clock.h" |
| 9 #include "base/timer/timer.h" | 10 #include "base/timer/timer.h" |
| 10 #include "base/values.h" | 11 #include "base/values.h" |
| 11 #include "ui/chromeos/ui_chromeos_export.h" | 12 #include "ui/chromeos/ui_chromeos_export.h" |
| 12 #include "ui/events/event.h" | 13 #include "ui/events/event.h" |
| 13 #include "ui/events/event_rewriter.h" | 14 #include "ui/events/event_rewriter.h" |
| 14 #include "ui/events/gesture_detection/gesture_detector.h" | 15 #include "ui/events/gesture_detection/gesture_detector.h" |
| 15 #include "ui/events/gestures/gesture_provider_aura.h" | 16 #include "ui/events/gestures/gesture_provider_aura.h" |
| 16 #include "ui/gfx/geometry/point.h" | 17 #include "ui/gfx/geometry/point.h" |
| 17 | 18 |
| (...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 472 std::map<int, base::Closure> right_swipe_gestures_; | 473 std::map<int, base::Closure> right_swipe_gestures_; |
| 473 std::map<int, base::Closure> up_swipe_gestures_; | 474 std::map<int, base::Closure> up_swipe_gestures_; |
| 474 std::map<int, base::Closure> down_swipe_gestures_; | 475 std::map<int, base::Closure> down_swipe_gestures_; |
| 475 | 476 |
| 476 DISALLOW_COPY_AND_ASSIGN(TouchExplorationController); | 477 DISALLOW_COPY_AND_ASSIGN(TouchExplorationController); |
| 477 }; | 478 }; |
| 478 | 479 |
| 479 } // namespace ui | 480 } // namespace ui |
| 480 | 481 |
| 481 #endif // UI_CHROMEOS_TOUCH_EXPLORATION_CONTROLLER_H_ | 482 #endif // UI_CHROMEOS_TOUCH_EXPLORATION_CONTROLLER_H_ |
| OLD | NEW |