From 3d8c0621df66b34d78334c6cacd9990c6222bf79 Mon Sep 17 00:00:00 2001 From: Kenny Ballou Date: Fri, 8 Mar 2019 21:44:56 -0700 Subject: Update chromium version Rename patches, applying for chromium-72-0.3626.121. Signed-off-by: Kenny Ballou --- .../www-client/chromium-72.0.3626.121/lambda-this.patch | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 patches/www-client/chromium-72.0.3626.121/lambda-this.patch (limited to 'patches/www-client/chromium-72.0.3626.121/lambda-this.patch') diff --git a/patches/www-client/chromium-72.0.3626.121/lambda-this.patch b/patches/www-client/chromium-72.0.3626.121/lambda-this.patch new file mode 100644 index 0000000..21f0510 --- /dev/null +++ b/patches/www-client/chromium-72.0.3626.121/lambda-this.patch @@ -0,0 +1,14 @@ +description: gcc 6 cannot automatically resolve the this pointer in a lambda +author: Michael Gilbert + +--- a/chrome/browser/usb/web_usb_service_impl.cc ++++ b/chrome/browser/usb/web_usb_service_impl.cc +@@ -161,7 +161,7 @@ void WebUsbServiceImpl::OnPermissionRevo + if (!device_info) + return true; + +- return !HasDevicePermission(*device_info); ++ return !this->HasDevicePermission(*device_info); + }); + } + -- cgit v1.2.1