Commit e70c4a04 authored by arthursonzogni's avatar arthursonzogni Committed by Commit Bot

Fix non matching histogram name.

The histogram is used in NavigationURLLoaderNetworkService as:
Navigation.URLLoaderNetworkService.OnCompleteHadSSLInfo

But it is declared in histograms.xml as:
Navigation.URLLoaderNetworkService.OnCompleteHasSSLInfo

The names don't match ("Had" vs "Has"). This CL fixes it.

Bug: 783265
Change-Id: I33ea9ae1ba92aaa20dab4b80f3e731b4229f3efa
Reviewed-on: https://chromium-review.googlesource.com/1039200Reviewed-by: default avatarJohn Abd-El-Malek <jam@chromium.org>
Commit-Queue: Arthur Sonzogni <arthursonzogni@chromium.org>
Cr-Commit-Position: refs/heads/master@{#555404}
parent 2a8d77bf
...@@ -995,7 +995,7 @@ class NavigationURLLoaderNetworkService::URLLoaderRequestController ...@@ -995,7 +995,7 @@ class NavigationURLLoaderNetworkService::URLLoaderRequestController
void OnComplete(const network::URLLoaderCompletionStatus& status) override { void OnComplete(const network::URLLoaderCompletionStatus& status) override {
UMA_HISTOGRAM_BOOLEAN( UMA_HISTOGRAM_BOOLEAN(
"Navigation.URLLoaderNetworkService.OnCompleteHadSSLInfo", "Navigation.URLLoaderNetworkService.OnCompleteHasSSLInfo",
status.ssl_info.has_value()); status.ssl_info.has_value());
if (status.ssl_info.has_value()) { if (status.ssl_info.has_value()) {
UMA_HISTOGRAM_MEMORY_KB( UMA_HISTOGRAM_MEMORY_KB(
......
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