Commit c36aa531 authored by miguelg's avatar miguelg Committed by Commit bot

Fix UMA reporting for permission granted stats with bubbles

BUG=

TBR=bauerb

Review URL: https://codereview.chromium.org/1130253010

Cr-Commit-Position: refs/heads/master@{#330076}
parent ac4f4964
......@@ -181,7 +181,7 @@ void PermissionContextBase::PermissionDecided(
if (persist) {
DCHECK(content_setting == CONTENT_SETTING_ALLOW ||
content_setting == CONTENT_SETTING_BLOCK);
if (CONTENT_SETTING_ALLOW)
if (content_setting == CONTENT_SETTING_ALLOW)
PermissionContextUmaUtil::PermissionGranted(permission_type_,
requesting_origin);
else
......
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