| 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..6e3b8417f513141ce71d91a97efb4423492958c4 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 empty_callback;
|
| +
|
| + ctrl->StartCalibration(target_display, empty_callback);
|
| EXPECT_TRUE(ctrl->is_calibrating());
|
|
|
| // There should be a touch calibrator view associated with each of the
|
|
|