$NetBSD: patch-src_3rdparty_chromium_net_proxy__resolution_proxy__config__service__linux.cc,v 1.1 2021/08/03 21:04:35 markd Exp $ --- src/3rdparty/chromium/net/proxy_resolution/proxy_config_service_linux.cc.orig 2020-07-15 18:56:00.000000000 +0000 +++ src/3rdparty/chromium/net/proxy_resolution/proxy_config_service_linux.cc @@ -6,7 +6,9 @@ #include #include +#if !defined(OS_BSD) #include +#endif #include #include @@ -511,6 +513,7 @@ int StringToIntOrDefault(base::StringPie return default_value; } +#if !defined(OS_BSD) // This is the KDE version that reads kioslaverc and simulates gsettings. // Doing this allows the main Delegate code, as well as the unit tests // for it, to stay the same - and the settings map fairly well besides. @@ -1001,6 +1004,7 @@ class SettingGetterImplKDE : public Prox DISALLOW_COPY_AND_ASSIGN(SettingGetterImplKDE); }; +#endif } // namespace @@ -1215,8 +1219,10 @@ ProxyConfigServiceLinux::Delegate::Deleg case base::nix::DESKTOP_ENVIRONMENT_KDE3: case base::nix::DESKTOP_ENVIRONMENT_KDE4: case base::nix::DESKTOP_ENVIRONMENT_KDE5: +#if !defined(OS_BSD) setting_getter_.reset(new SettingGetterImplKDE(env_var_getter_.get())); break; +#endif case base::nix::DESKTOP_ENVIRONMENT_XFCE: case base::nix::DESKTOP_ENVIRONMENT_OTHER: break;