Commit eedc26c6 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: If2f121ff622e2cc86ca6d2352307543e41e1ab72
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2458911
Commit-Queue: Alan Cutter <alancutter@chromium.org>
Reviewed-by: default avatarAlan Cutter <alancutter@chromium.org>
Cr-Commit-Position: refs/heads/master@{#815522}
parent 7098eca6
......@@ -254,7 +254,7 @@ void WebAppInstallTask::UpdateWebAppFromInfo(
data_retriever_->GetIcons(
web_contents, std::move(icon_urls),
/*skip_page_fav_icons=*/true, WebAppIconDownloader::Histogram::kForUpdate,
/*skip_page_favicons=*/true, WebAppIconDownloader::Histogram::kForUpdate,
base::BindOnce(&WebAppInstallTask::OnIconsRetrievedFinalizeUpdate,
base::Unretained(this), std::move(web_application_info)));
}
......
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