| 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_test_api.h" | 5 #include "ash/laser/laser_pointer_controller_test_api.h" |
| 6 | 6 |
| 7 #include "ash/laser/laser_pointer_controller.h" | 7 #include "ash/laser/laser_pointer_controller.h" |
| 8 #include "ash/laser/laser_pointer_points.h" | 8 #include "ash/laser/laser_pointer_points.h" |
| 9 #include "ash/laser/laser_pointer_view.h" | 9 #include "ash/laser/laser_pointer_view.h" |
| 10 | 10 |
| 11 namespace ash { | 11 namespace ash { |
| 12 | 12 |
| 13 LaserPointerControllerTestApi::LaserPointerControllerTestApi( | 13 LaserPointerControllerTestApi::LaserPointerControllerTestApi( |
| 14 LaserPointerController* instance) | 14 LaserPointerController* instance) |
| 15 : instance_(instance) {} | 15 : instance_(instance) {} |
| 16 | 16 |
| 17 LaserPointerControllerTestApi::~LaserPointerControllerTestApi() {} | 17 LaserPointerControllerTestApi::~LaserPointerControllerTestApi() {} |
| 18 | 18 |
| 19 void LaserPointerControllerTestApi::SetEnabled(bool enabled) { | 19 void LaserPointerControllerTestApi::SetEnabled(bool enabled) { |
| 20 instance_->SetEnabled(enabled); | 20 instance_->SetEnabled(enabled); |
| 21 } | 21 } |
| 22 | 22 |
| 23 bool LaserPointerControllerTestApi::IsShowingLaserPointer() { | 23 bool LaserPointerControllerTestApi::IsShowingLaserPointer() const { |
| 24 return instance_->laser_pointer_view_ != nullptr; | 24 return instance_->laser_pointer_view_ != nullptr; |
| 25 } | 25 } |
| 26 | 26 |
| 27 bool LaserPointerControllerTestApi::IsFadingAway() { | 27 bool LaserPointerControllerTestApi::IsFadingAway() const { |
| 28 return IsShowingLaserPointer() && instance_->is_fading_away_; | 28 return IsShowingLaserPointer() && instance_->is_fading_away_; |
| 29 } | 29 } |
| 30 | 30 |
| 31 void LaserPointerControllerTestApi::SetIsFadingAway(bool fading_away) { | 31 void LaserPointerControllerTestApi::SetIsFadingAway(bool fading_away) { |
| 32 instance_->is_fading_away_ = fading_away; | 32 instance_->is_fading_away_ = fading_away; |
| 33 } | 33 } |
| 34 | 34 |
| 35 const LaserPointerPoints& LaserPointerControllerTestApi::laser_points() { | 35 const LaserPointerPoints& LaserPointerControllerTestApi::laser_points() const { |
| 36 return instance_->laser_pointer_view_->laser_points_; | 36 return instance_->laser_pointer_view_->laser_points_; |
| 37 } | 37 } |
| 38 | 38 |
| 39 LaserPointerView* LaserPointerControllerTestApi::laser_pointer_view() { | 39 const LaserPointerPoints& |
| 40 LaserPointerControllerTestApi::predicted_laser_points() const { |
| 41 return instance_->laser_pointer_view_->predicted_laser_points_; |
| 42 } |
| 43 |
| 44 LaserPointerView* LaserPointerControllerTestApi::laser_pointer_view() const { |
| 40 return instance_->laser_pointer_view_.get(); | 45 return instance_->laser_pointer_view_.get(); |
| 41 } | 46 } |
| 42 | 47 |
| 43 } // namespace ash | 48 } // namespace ash |
| OLD | NEW |