Chromium Code Reviews| Index: chrome/browser/chromeos/display/touch_calibrator/touch_calibrator_controller_unittest.cc |
| diff --git a/chrome/browser/chromeos/display/touch_calibrator/touch_calibrator_controller_unittest.cc b/chrome/browser/chromeos/display/touch_calibrator/touch_calibrator_controller_unittest.cc |
| index 080e2088beb74109f87dc4cce30df7ae94249f1b..0be213c3d07f7fbce8edbf504cc3698a5bb317eb 100644 |
| --- a/chrome/browser/chromeos/display/touch_calibrator/touch_calibrator_controller_unittest.cc |
| +++ b/chrome/browser/chromeos/display/touch_calibrator/touch_calibrator_controller_unittest.cc |
| @@ -44,7 +44,9 @@ class TouchCalibratorControllerTest : public ash::test::AshTestBase { |
| EXPECT_FALSE(ctrl->is_calibrating()); |
| EXPECT_FALSE(!!ctrl->touch_calibrator_views_.size()); |
| - ctrl->StartCalibration(target_display); |
| + TouchCalibratorController::TouchCalibrationCallback callback; |
|
stevenjb
2017/01/19 17:19:01
nit: 'do_nothing' or 'empty_callback'
malaykeshav
2017/01/19 23:49:06
Done
|
| + |
| + ctrl->StartCalibration(target_display, callback); |
| EXPECT_TRUE(ctrl->is_calibrating()); |
| // There should be a touch calibrator view associated with each of the |