| 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 ASH_COMMON_SYSTEM_CHROMEOS_PALETTE_TOOLS_LASER_POINTER_POINTS_H_ | 5 #ifndef ASH_LASER_LASER_POINTER_POINTS_H_ |
| 6 #define ASH_COMMON_SYSTEM_CHROMEOS_PALETTE_TOOLS_LASER_POINTER_POINTS_H_ | 6 #define ASH_LASER_LASER_POINTER_POINTS_H_ |
| 7 | 7 |
| 8 #include <deque> | 8 #include <deque> |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| 11 #include "ash/ash_export.h" | 11 #include "ash/ash_export.h" |
| 12 #include "base/time/time.h" | 12 #include "base/time/time.h" |
| 13 #include "ui/gfx/geometry/point.h" | 13 #include "ui/gfx/geometry/point.h" |
| 14 #include "ui/gfx/geometry/rect.h" | 14 #include "ui/gfx/geometry/rect.h" |
| 15 | 15 |
| 16 namespace ash { | 16 namespace ash { |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 void ClearOldPoints(); | 54 void ClearOldPoints(); |
| 55 | 55 |
| 56 base::TimeDelta life_duration_; | 56 base::TimeDelta life_duration_; |
| 57 std::deque<LaserPoint> points_; | 57 std::deque<LaserPoint> points_; |
| 58 | 58 |
| 59 DISALLOW_COPY_AND_ASSIGN(LaserPointerPoints); | 59 DISALLOW_COPY_AND_ASSIGN(LaserPointerPoints); |
| 60 }; | 60 }; |
| 61 | 61 |
| 62 } // namespace ash | 62 } // namespace ash |
| 63 | 63 |
| 64 #endif // ASH_COMMON_SYSTEM_CHROMEOS_PALETTE_TOOLS_LASER_POINTER_POINTS_H_ | 64 #endif // ASH_LASER_LASER_POINTER_POINTS_H_ |
| OLD | NEW |