Commit 4063a1b8 authored by George Burgess IV's avatar George Burgess IV Committed by Commit Bot

fix an instance of bugprone-argument-comment

This new clang-tidy check complains when param names /*in_comments=*/
don't match up with the actual parameter name they're being passed to.
Sometimes this is benign, other times, actual bugs are found.

Bug: 1136209
Change-Id: I808b5a1ee49e56e51e21961d3e7d1a4b937a1c05
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2458867Reviewed-by: default avatarCharlie Harrison <csharrison@chromium.org>
Commit-Queue: George Burgess <gbiv@chromium.org>
Cr-Commit-Position: refs/heads/master@{#815690}
parent 6f4a3ec8
...@@ -45,7 +45,7 @@ void UrlLoaderFactoryProxyImpl::GetProxiedURLLoaderFactory( ...@@ -45,7 +45,7 @@ void UrlLoaderFactoryProxyImpl::GetProxiedURLLoaderFactory(
/*navigation_id=*/base::nullopt, /*navigation_id=*/base::nullopt,
base::UkmSourceId::FromInt64(frame_host->GetPageUkmSourceId()), base::UkmSourceId::FromInt64(frame_host->GetPageUkmSourceId()),
&proxied_factory, &proxied_factory,
/*headber_client=*/nullptr); /*header_client=*/nullptr);
mojo::FusePipes(std::move(proxied_factory), std::move(original_factory)); mojo::FusePipes(std::move(proxied_factory), std::move(original_factory));
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment