Chromium Code Reviews| Index: ash/common/system/chromeos/palette/tools/laser_pointer_mode_test_api.cc |
| diff --git a/ash/common/system/chromeos/palette/tools/laser_pointer_mode_test_api.cc b/ash/common/system/chromeos/palette/tools/laser_pointer_mode_test_api.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..79f4ea12a9dadce93d56c189cff739fa3b0d3fe5 |
| --- /dev/null |
| +++ b/ash/common/system/chromeos/palette/tools/laser_pointer_mode_test_api.cc |
| @@ -0,0 +1,34 @@ |
| +// Copyright 2016 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "ash/common/system/chromeos/palette/tools/laser_pointer_mode_test_api.h" |
| + |
| +#include "ash/common/system/chromeos/palette/tools/laser_pointer_mode.h" |
| +#include "ash/common/system/chromeos/palette/tools/laser_pointer_points.h" |
| +#include "ash/common/system/chromeos/palette/tools/laser_pointer_view.h" |
| + |
| +namespace ash { |
| + |
| +LaserPointerModeTestApi::LaserPointerModeTestApi( |
| + std::unique_ptr<LaserPointerMode> instance) |
| + : instance_(std::move(instance)) {} |
| + |
| +LaserPointerModeTestApi::~LaserPointerModeTestApi() {} |
| + |
| +void LaserPointerModeTestApi::OnEnable() { |
| + instance_->OnEnable(); |
| +} |
| + |
| +void LaserPointerModeTestApi::OnDisable() { |
| + instance_->OnDisable(); |
| +} |
| + |
| +const LaserPointerPoints& LaserPointerModeTestApi::laser_points() { |
| + return instance_->laser_pointer_view_->laser_points_; |
| +} |
| + |
| +gfx::Point LaserPointerModeTestApi::current_mouse_location() { |
| + return instance_->current_mouse_location_; |
| +} |
| +} // namespace ash |
|
jdufault
2016/08/24 00:20:57
newline above this
sammiequon
2016/08/24 17:30:19
Done.
|