blob: dd7ad648ff60e479950ba1006d4f75bf80dcdda8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- extensions/common/features/feature.cc.orig 2025-09-06 10:01:20 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
|