OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_ASH_COMMON_METRICS_POINTER_METRICS_RECORDER_H_ | 5 #ifndef UI_ASH_METRICS_POINTER_METRICS_RECORDER_H_ |
6 #define UI_ASH_COMMON_METRICS_POINTER_METRICS_RECORDER_H_ | 6 #define UI_ASH_METRICS_POINTER_METRICS_RECORDER_H_ |
7 | 7 |
8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "ui/views/pointer_watcher.h" | 10 #include "ui/views/pointer_watcher.h" |
11 | 11 |
12 namespace gfx { | 12 namespace gfx { |
13 class Point; | 13 class Point; |
14 } | 14 } |
15 | 15 |
16 namespace ui { | 16 namespace ui { |
(...skipping 12 matching lines...) Expand all Loading... |
29 void OnPointerEventObserved(const ui::PointerEvent& event, | 29 void OnPointerEventObserved(const ui::PointerEvent& event, |
30 const gfx::Point& location_in_screen, | 30 const gfx::Point& location_in_screen, |
31 views::Widget* target) override; | 31 views::Widget* target) override; |
32 | 32 |
33 private: | 33 private: |
34 DISALLOW_COPY_AND_ASSIGN(PointerMetricsRecorder); | 34 DISALLOW_COPY_AND_ASSIGN(PointerMetricsRecorder); |
35 }; | 35 }; |
36 | 36 |
37 } // namespace ash | 37 } // namespace ash |
38 | 38 |
39 #endif // UI_ASH_COMMON_METRICS_POINTER_METRICS_RECORDER_H_ | 39 #endif // UI_ASH_METRICS_POINTER_METRICS_RECORDER_H_ |
OLD | NEW |