blob: c5866c6a26c6c3026ded3d826e5cf6c4ad0334e6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- extensions/common/command.cc.orig 2024-10-16 21:31:29 UTC
+++ extensions/common/command.cc
@@ -286,7 +286,7 @@ std::string Command::CommandPlatform() {
return values::kKeybindingPlatformMac;
#elif BUILDFLAG(IS_CHROMEOS)
return values::kKeybindingPlatformChromeOs;
-#elif BUILDFLAG(IS_LINUX)
+#elif BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_BSD)
return values::kKeybindingPlatformLinux;
#elif BUILDFLAG(IS_FUCHSIA)
// TODO(crbug.com/40220501): Change this once we decide what string should be
|