| Index: ui/events/devices/device_util_linux.cc
 | 
| diff --git a/ui/events/devices/device_util_linux.cc b/ui/events/devices/device_util_linux.cc
 | 
| index 858ee84be97aa2696b0c0c8113cfd176fc2d56dd..e53a1e4b2cecb22707a46f5139d45171a5866459 100644
 | 
| --- a/ui/events/devices/device_util_linux.cc
 | 
| +++ b/ui/events/devices/device_util_linux.cc
 | 
| @@ -17,7 +17,7 @@ namespace ui {
 | 
|  InputDeviceType GetInputDeviceTypeFromPath(const base::FilePath& path) {
 | 
|    DCHECK(!base::MessageLoopForUI::IsCurrent());
 | 
|    std::string event_node = path.BaseName().value();
 | 
| -  if (event_node.empty() || !StartsWithASCII(event_node, "event", false))
 | 
| +  if (event_node.empty() || !base::StartsWithASCII(event_node, "event", false))
 | 
|      return InputDeviceType::INPUT_DEVICE_UNKNOWN;
 | 
|  
 | 
|    // Find sysfs device path for this device.
 | 
| 
 |