Commit 2f7662d9 authored by Gang Wu's avatar Gang Wu Committed by Commit Bot

[Feed] Fix Nonsynthetic NotSynthetic typo

Feed should report NotSynthetic instead of Nonsynthetic.

Bug: 943833
Change-Id: I851d7e2c7f604812466ff1df61e1cb2d4bf518e6
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1542961Reviewed-by: default avatarSky Malice <skym@chromium.org>
Commit-Queue: Sky Malice <skym@chromium.org>
Cr-Commit-Position: refs/heads/master@{#645327}
parent c843bc45
...@@ -362,10 +362,10 @@ void FeedLoggingMetrics::OnTokenCompleted(bool was_synthetic, ...@@ -362,10 +362,10 @@ void FeedLoggingMetrics::OnTokenCompleted(bool was_synthetic,
token_count, kMaxTokenCount); token_count, kMaxTokenCount);
} else { } else {
UMA_HISTOGRAM_EXACT_LINEAR( UMA_HISTOGRAM_EXACT_LINEAR(
"ContentSuggestions.Feed.TokenCompleted.ContentCount2.Nonsynthetic", "ContentSuggestions.Feed.TokenCompleted.ContentCount2.NotSynthetic",
content_count, kMaxContentCount); content_count, kMaxContentCount);
UMA_HISTOGRAM_EXACT_LINEAR( UMA_HISTOGRAM_EXACT_LINEAR(
"ContentSuggestions.Feed.TokenCompleted.TokenCount.Nonsynthetic", "ContentSuggestions.Feed.TokenCompleted.TokenCount.NotSynthetic",
token_count, kMaxTokenCount); token_count, kMaxTokenCount);
} }
} }
...@@ -378,7 +378,7 @@ void FeedLoggingMetrics::OnTokenFailedToComplete(bool was_synthetic, ...@@ -378,7 +378,7 @@ void FeedLoggingMetrics::OnTokenFailedToComplete(bool was_synthetic,
failure_count, kMaxFailureCount); failure_count, kMaxFailureCount);
} else { } else {
UMA_HISTOGRAM_EXACT_LINEAR( UMA_HISTOGRAM_EXACT_LINEAR(
"ContentSuggestions.Feed.TokenFailedToCompleted.Nonsynthetic", "ContentSuggestions.Feed.TokenFailedToCompleted.NotSynthetic",
failure_count, kMaxFailureCount); failure_count, kMaxFailureCount);
} }
} }
......
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