Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(471)

Side by Side Diff: ash/laser/laser_pointer_controller.cc

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/keyboard/keyboard_ui_observer.h ('k') | ash/login_status.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « ash/keyboard/keyboard_ui_observer.h ('k') | ash/login_status.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698