1 --- extensions/common/features/feature.cc.orig 2022-02-28 16:54:41 UTC 2 +++ extensions/common/features/feature.cc 3 @@ -34,6 +34,8 @@ Feature::Platform Feature::GetCurrentPlatform() { 4 return WIN_PLATFORM; 5 #elif BUILDFLAG(IS_FUCHSIA) 6 return FUCHSIA_PLATFORM; 7 +#elif defined(OS_BSD) 8 + return LINUX_PLATFORM; 9 #else 10 return UNSPECIFIED_PLATFORM; 11 #endif 12