blob: 849272c59fad362d86f6ea0560cd3df4cb9a6301 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- extensions/common/features/feature.cc.orig 2025-08-26 20:49:50 UTC
+++ extensions/common/features/feature.cc
@@ -30,6 +30,8 @@ Feature::Platform Feature::GetCurrentPlatform() {
return WIN_PLATFORM;
#elif BUILDFLAG(ENABLE_DESKTOP_ANDROID_EXTENSIONS)
return DESKTOP_ANDROID_PLATFORM;
+#elif BUILDFLAG(IS_BSD)
+ return LINUX_PLATFORM;
#else
return UNSPECIFIED_PLATFORM;
#endif
|