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

Unified Diff: ui/events/ozone/evdev/touch_event_converter_evdev.cc

Issue 1032233002: ozone: evdev: Unsquelch some real errors in release (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « ui/events/ozone/evdev/event_device_info.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/ozone/evdev/touch_event_converter_evdev.cc
diff --git a/ui/events/ozone/evdev/touch_event_converter_evdev.cc b/ui/events/ozone/evdev/touch_event_converter_evdev.cc
index 221e6bf72cca3a008bea9105d431249ce826390f..7a73ac57ad5b53f9ec38abac0f64bda3d7015981 100644
--- a/ui/events/ozone/evdev/touch_event_converter_evdev.cc
+++ b/ui/events/ozone/evdev/touch_event_converter_evdev.cc
@@ -47,13 +47,13 @@ void GetTouchCalibration(TouchCalibration* cal) {
switches::kTouchCalibration),
",", &parts) >= 4) {
if (!base::StringToInt(parts[0], &cal->bezel_left))
- DLOG(ERROR) << "Incorrect left border calibration value passed.";
+ LOG(ERROR) << "Incorrect left border calibration value passed.";
if (!base::StringToInt(parts[1], &cal->bezel_right))
- DLOG(ERROR) << "Incorrect right border calibration value passed.";
+ LOG(ERROR) << "Incorrect right border calibration value passed.";
if (!base::StringToInt(parts[2], &cal->bezel_top))
- DLOG(ERROR) << "Incorrect top border calibration value passed.";
+ LOG(ERROR) << "Incorrect top border calibration value passed.";
if (!base::StringToInt(parts[3], &cal->bezel_bottom))
- DLOG(ERROR) << "Incorrect bottom border calibration value passed.";
+ LOG(ERROR) << "Incorrect bottom border calibration value passed.";
}
}
« no previous file with comments | « ui/events/ozone/evdev/event_device_info.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698