| 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 ae0293c97cdb61b86865d1d90f0aa84be7571d59..c30bba367942224f948ede01e0b67bf3b2c9bdc3 100644
|
| --- a/ui/events/ozone/evdev/touch_event_converter_evdev.cc
|
| +++ b/ui/events/ozone/evdev/touch_event_converter_evdev.cc
|
| @@ -40,10 +40,9 @@ struct TouchCalibration {
|
|
|
| void GetTouchCalibration(TouchCalibration* cal) {
|
| std::vector<std::string> parts;
|
| - if (Tokenize(CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
|
| + if (Tokenize(base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII(
|
| switches::kTouchCalibration),
|
| - ",",
|
| - &parts) >= 4) {
|
| + ",", &parts) >= 4) {
|
| if (!base::StringToInt(parts[0], &cal->bezel_left))
|
| DLOG(ERROR) << "Incorrect left border calibration value passed.";
|
| if (!base::StringToInt(parts[1], &cal->bezel_right))
|
|
|