15 lines
1,000 B
Diff
15 lines
1,000 B
Diff
Patch-Source: https://gitlab.archlinux.org/archlinux/packaging/packages/chromium/-/blob/c073b0c20935d7eb452732e0f3b2860a96c3db21/random-build-fixes.patch
|
|
--
|
|
diff --git a/chrome/browser/download/bubble/download_bubble_update_service.cc b/chrome/browser/download/bubble/download_bubble_update_service.cc
|
|
index 41b647f7b44..8940c6bb7fc 100644
|
|
--- a/chrome/browser/signin/bound_session_credentials/bound_session_refresh_cookie_fetcher_impl.cc
|
|
+++ b/chrome/browser/signin/bound_session_credentials/bound_session_refresh_cookie_fetcher_impl.cc
|
|
@@ -103,6 +103,6 @@ void BoundSessionRefreshCookieFetcherImpl::OnURLLoaderComplete(
|
|
net::Error net_error = static_cast<net::Error>(url_loader_->NetError());
|
|
|
|
std::move(callback_).Run(
|
|
- Result(net_error, headers ? absl::optional<int>(headers->response_code())
|
|
- : absl::nullopt));
|
|
+ Result({net_error, headers ? absl::optional<int>(headers->response_code())
|
|
+ : absl::nullopt}));
|
|
}
|