22 lines
1.0 KiB
Diff
22 lines
1.0 KiB
Diff
diff -up chromium-93.0.4577.63/remoting/host/remote_open_url_client.cc.remoting-nodestructor-fix chromium-93.0.4577.63/remoting/host/remote_open_url_client.cc
|
|
--- chromium-93.0.4577.63/remoting/host/remote_open_url_client.cc.remoting-nodestructor-fix 2021-09-03 17:30:44.162605313 +0000
|
|
+++ chromium-93.0.4577.63/remoting/host/remote_open_url_client.cc 2021-09-03 17:31:01.017986003 +0000
|
|
@@ -56,7 +56,7 @@ void ShowMessageDialog(const std::string
|
|
}
|
|
|
|
bool IsBrowserValid(const std::string& browser) {
|
|
- static const base::NoDestructor<base::flat_set<std::string>> invalid_browsers(
|
|
+ static const base::NoDestructor<base::flat_set<std::string>> invalid_browsers{
|
|
{
|
|
// This is the chromoting forwarder itself.
|
|
"crd-url-forwarder.desktop",
|
|
@@ -64,7 +64,7 @@ bool IsBrowserValid(const std::string& b
|
|
// XFCE's forwarder. May potentially launch the chromoting forwarder
|
|
// recursively.
|
|
"xfce4-web-browser.desktop",
|
|
- });
|
|
+ }};
|
|
if (browser.empty()) {
|
|
return false;
|
|
}
|