aboutsummaryrefslogtreecommitdiffstats
path: root/community/chromium/chromium-clang-r3.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2018-07-28 23:31:27 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2018-07-30 05:20:27 +0000
commit0162297388e005782cf6577a950a1e4d6707ead1 (patch)
tree345e123129ac644e2d237554cfa68c5d7e239bb1 /community/chromium/chromium-clang-r3.patch
parent2f448dd87466e2cf21a93eca35c167c983e3ac7a (diff)
downloadaports-0162297388e005782cf6577a950a1e4d6707ead1.tar.bz2
aports-0162297388e005782cf6577a950a1e4d6707ead1.tar.xz
community/chromium: upgrade to 68.0.3440.75
disable widevine as upstream only supports Mac and Windows now. (and I don't think it ever worked on alpine)
Diffstat (limited to 'community/chromium/chromium-clang-r3.patch')
-rw-r--r--community/chromium/chromium-clang-r3.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/community/chromium/chromium-clang-r3.patch b/community/chromium/chromium-clang-r3.patch
deleted file mode 100644
index 0010932b3e..0000000000
--- a/community/chromium/chromium-clang-r3.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-# Taken from gentoo:
-# https://gitweb.gentoo.org/repo/gentoo.git/plain/www-client/chromium/files/chromium-clang-r3.patch
-#
-# Prevents this error:
-# ../../device/u2f/u2f_ble_transaction.cc:134:27: error: no viable overloaded '='
-# request_cont_fragments_ = {};
-# ~~~~~~~~~~~~~~~~~~~~~~~ ^ ~~
-
---- ./device/fido/u2f_ble_transaction.cc
-+++ ./device/fido/u2f_ble_transaction.cc
-@@ -131,7 +131,7 @@
-
- void U2fBleTransaction::OnError() {
- request_frame_.reset();
-- request_cont_fragments_ = {};
-+ request_cont_fragments_ = base::queue<U2fBleFrameContinuationFragment>();
- response_frame_assembler_.reset();
- std::move(callback_).Run(base::nullopt);
- }