Commit 19a88e4b authored by Maxim Kolosovskiy's avatar Maxim Kolosovskiy Committed by Commit Bot

Revert "[Password Manager] Disable uploading noisified info about special symbols"

This reverts commit 3442d9cc.

Reason for revert: we don't need to disable crowdsourcing anymore.

Original change's description:
> [Password Manager] Disable uploading noisified info about special symbols
> 
> We may need to disable the uploading and merge it to late Beta. With this CL, I test that disabling doesn't cause any crashes or other issues. If we don't need to disable uploading, this CL will be reverted.
> 
> The uploading was introduced in https://chromium-review.googlesource.com/c/chromium/src/+/1567751.
> 
> Bug: 953668, 552420
> Change-Id: I6e85bc047bcf1a263b60c5a0cbea19eb5e86f576
> Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1615023
> Reviewed-by: Vadym Doroshenko <dvadym@chromium.org>
> Commit-Queue: Maxim Kolosovskiy <kolos@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#660352}

TBR=dvadym@chromium.org,kolos@chromium.org

# Not skipping CQ checks because original CL landed > 1 day ago.

Bug: 953668, 552420
Change-Id: Ied3dedfba52c5d57a696548ce99ff0c334c4257b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1617446Reviewed-by: default avatarMaxim Kolosovskiy <kolos@chromium.org>
Commit-Queue: Maxim Kolosovskiy <kolos@chromium.org>
Cr-Commit-Position: refs/heads/master@{#661177}
parent a1869d46
...@@ -411,6 +411,8 @@ void EncodePasswordAttributesVote( ...@@ -411,6 +411,8 @@ void EncodePasswordAttributesVote(
break; break;
case PasswordAttribute::kHasSpecialSymbol: case PasswordAttribute::kHasSpecialSymbol:
upload->set_password_has_special_symbol(password_attributes_vote.second); upload->set_password_has_special_symbol(password_attributes_vote.second);
if (password_attributes_vote.second)
upload->set_password_special_symbol(password_symbol_vote);
break; break;
case PasswordAttribute::kPasswordAttributesCount: case PasswordAttribute::kPasswordAttributesCount:
NOTREACHED(); NOTREACHED();
......
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