| Index: ui/events/ozone/evdev/libgestures_glue/gesture_property_provider.cc
 | 
| diff --git a/ui/events/ozone/evdev/libgestures_glue/gesture_property_provider.cc b/ui/events/ozone/evdev/libgestures_glue/gesture_property_provider.cc
 | 
| index 45cd381677d540d299147f1bf1cab3617e91e913..64e0696d72479ae40b3be7c6045f0dd0c022f17d 100644
 | 
| --- a/ui/events/ozone/evdev/libgestures_glue/gesture_property_provider.cc
 | 
| +++ b/ui/events/ozone/evdev/libgestures_glue/gesture_property_provider.cc
 | 
| @@ -505,7 +505,7 @@ bool IsMatchTypeSupported(const std::string& match_type) {
 | 
|  
 | 
|  // Check if a match criteria is a device type one.
 | 
|  bool IsMatchDeviceType(const std::string& match_type) {
 | 
| -  return base::StartsWithASCII(match_type, "MatchIs", true);
 | 
| +  return base::StartsWith(match_type, "MatchIs", base::CompareCase::SENSITIVE);
 | 
|  }
 | 
|  
 | 
|  // Parse a boolean value keyword (e.g., on/off, true/false).
 | 
| 
 |