Index: ash/laser/laser_pointer_controller_test_api.cc |
diff --git a/ash/laser/laser_pointer_controller_test_api.cc b/ash/laser/laser_pointer_controller_test_api.cc |
index eda09a9fa5f594ae45ef569390b5f57c9ecd7b2a..165608acb50fd9e6f457e0741c28ccade7c21bad 100644 |
--- a/ash/laser/laser_pointer_controller_test_api.cc |
+++ b/ash/laser/laser_pointer_controller_test_api.cc |
@@ -24,6 +24,14 @@ bool LaserPointerControllerTestApi::IsShowingLaserPointer() { |
return instance_->laser_pointer_view_ != nullptr; |
} |
+bool LaserPointerControllerTestApi::IsFadingAway() { |
+ return IsShowingLaserPointer() && instance_->is_fading_away_; |
+} |
+ |
+void LaserPointerControllerTestApi::SetIsFadingAway(bool fading_away) { |
+ instance_->is_fading_away_ = fading_away; |
+} |
+ |
const LaserPointerPoints& LaserPointerControllerTestApi::laser_points() { |
return instance_->laser_pointer_view_->laser_points_; |
} |