| Index: ui/events/ozone/device/udev/device_manager_udev.cc
 | 
| diff --git a/ui/events/ozone/device/udev/device_manager_udev.cc b/ui/events/ozone/device/udev/device_manager_udev.cc
 | 
| index 4e28e3904fa0de24e0fd7d67c3ab147c99d7732a..ca7daa26ad6c43f802d66f495b0007275bec558c 100644
 | 
| --- a/ui/events/ozone/device/udev/device_manager_udev.cc
 | 
| +++ b/ui/events/ozone/device/udev/device_manager_udev.cc
 | 
| @@ -162,10 +162,10 @@ scoped_ptr<DeviceEvent> DeviceManagerUdev::ProcessMessage(udev_device* device) {
 | 
|  
 | 
|    DeviceEvent::DeviceType device_type;
 | 
|    if (!strcmp(subsystem, "input") &&
 | 
| -      StartsWithASCII(path, "/dev/input/event", true))
 | 
| +      base::StartsWithASCII(path, "/dev/input/event", true))
 | 
|      device_type = DeviceEvent::INPUT;
 | 
|    else if (!strcmp(subsystem, "drm") &&
 | 
| -           StartsWithASCII(path, "/dev/dri/card", true))
 | 
| +           base::StartsWithASCII(path, "/dev/dri/card", true))
 | 
|      device_type = DeviceEvent::DISPLAY;
 | 
|    else
 | 
|      return nullptr;
 | 
| 
 |