9ad5184453
Build cross platform desktop apps with JavaScript, HTML, and CSS. It's easier than you think. If you can build a website, you can build a desktop app. Electron is a framework for creating native applications with web technologies like JavaScript, HTML, and CSS. It takes care of the hard parts so you can focus on the core of your application. WWW: https://electronjs.org/
11 lines
503 B
C++
11 lines
503 B
C++
--- extensions/common/command.cc.orig 2022-11-30 08:12:58 UTC
|
|
+++ extensions/common/command.cc
|
|
@@ -280,7 +280,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/1312215): Change this once we decide what string should be
|