Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Unified Diff: chrome/browser/chromeos/display/touch_calibrator/touch_calibrator_controller_unittest.cc

Issue 2656433004: - Plumbs through native touch calibration from MD settings to display manager via the system dis… (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698