Commit 6794f035 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: Ib93e421e0b119ca2acb4541d926d73d6bc352996
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2458910
Commit-Queue: David Roger <droger@chromium.org>
Reviewed-by: default avatarDavid Roger <droger@chromium.org>
Cr-Commit-Position: refs/heads/master@{#815539}
parent 4e7baada
......@@ -869,5 +869,5 @@ IN_PROC_BROWSER_TEST_F(ProfileMenuClickKeyAcceleratorTest, FocusOtherProfile) {
histogram_tester_.ExpectUniqueSample(
"Profile.Menu.ClickedActionableItem",
ProfileMenuViewBase::ActionableItem::kOtherProfileButton,
/*count=*/1);
/*expected_count=*/1);
}
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