| Index: chrome/browser/extensions/api/commands/command_service.cc
|
| diff --git a/chrome/browser/extensions/api/commands/command_service.cc b/chrome/browser/extensions/api/commands/command_service.cc
|
| index 0f57c603125edcd8e5f822e25904dabd43083660..7636c93d2188b1096fd14dff98e2b630ceceebd9 100644
|
| --- a/chrome/browser/extensions/api/commands/command_service.cc
|
| +++ b/chrome/browser/extensions/api/commands/command_service.cc
|
| @@ -69,7 +69,8 @@ std::string GetPlatformKeybindingKeyForAccelerator(
|
| }
|
|
|
| bool IsForCurrentPlatform(const std::string& key) {
|
| - return base::StartsWithASCII(key, Command::CommandPlatform() + ":", true);
|
| + return base::StartsWith(key, Command::CommandPlatform() + ":",
|
| + base::CompareCase::SENSITIVE);
|
| }
|
|
|
| std::string StripCurrentPlatform(const std::string& key) {
|
|
|