| 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 #include "ash/laser/laser_pointer_controller.h" | 5 #include "ash/laser/laser_pointer_controller.h" |
| 6 | 6 |
| 7 #include "ash/common/system/chromeos/palette/palette_utils.h" | |
| 8 #include "ash/laser/laser_pointer_view.h" | 7 #include "ash/laser/laser_pointer_view.h" |
| 9 #include "ash/shell.h" | 8 #include "ash/shell.h" |
| 9 #include "ash/system/palette/palette_utils.h" |
| 10 #include "ui/display/screen.h" | 10 #include "ui/display/screen.h" |
| 11 #include "ui/views/widget/widget.h" | 11 #include "ui/views/widget/widget.h" |
| 12 | 12 |
| 13 namespace ash { | 13 namespace ash { |
| 14 namespace { | 14 namespace { |
| 15 | 15 |
| 16 // A point gets removed from the collection if it is older than | 16 // A point gets removed from the collection if it is older than |
| 17 // |kPointLifeDurationMs|. | 17 // |kPointLifeDurationMs|. |
| 18 const int kPointLifeDurationMs = 200; | 18 const int kPointLifeDurationMs = 200; |
| 19 | 19 |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 kPointLifeDurationMs) { | 144 kPointLifeDurationMs) { |
| 145 stationary_timer_->Stop(); | 145 stationary_timer_->Stop(); |
| 146 // Reset the view if the timer expires and the view was in process of fading | 146 // Reset the view if the timer expires and the view was in process of fading |
| 147 // away. | 147 // away. |
| 148 if (is_fading_away_) | 148 if (is_fading_away_) |
| 149 DestroyLaserPointerView(); | 149 DestroyLaserPointerView(); |
| 150 } | 150 } |
| 151 stationary_timer_repeat_count_++; | 151 stationary_timer_repeat_count_++; |
| 152 } | 152 } |
| 153 } // namespace ash | 153 } // namespace ash |
| OLD | NEW |