| Index: base/sys_info.cc
|
| diff --git a/base/sys_info.cc b/base/sys_info.cc
|
| index 8640dc14edcfc01e94c3123b3055a003bc9bc4a1..6e283be1f95e202d6611bc4e63a59327b4c93b0b 100644
|
| --- a/base/sys_info.cc
|
| +++ b/base/sys_info.cc
|
| @@ -41,7 +41,7 @@ bool SysInfo::IsLowEndDevice() {
|
|
|
| // Low End Device Mode will be enabled if this client is assigned to
|
| // one of those EnabledXXX groups.
|
| - if (StartsWithASCII(group_name, "Enabled", true))
|
| + if (StartsWith(group_name, "Enabled", CompareCase::SENSITIVE))
|
| return true;
|
|
|
| return g_lazy_low_end_device.Get().value();
|
|
|