Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6090)

Unified Diff: chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc

Issue 12263007: Fixed CaptivePortal UMA histogram names to be consistent with XML description. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed Captive Portal UMA histogram names. Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc
diff --git a/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc b/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc
index 1468aa54d3872d3b5543e4c4b63e9c4493a66a2b..f8d8b871cceccad9f12f5dc41f7b3739a2214d9e 100644
--- a/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc
+++ b/chrome/browser/ui/webui/chromeos/login/signin_screen_handler.cc
@@ -202,17 +202,17 @@ void RecordDiscrepancyWithShill(
const NetworkPortalDetector::CaptivePortalStatus status) {
if (network->online()) {
UMA_HISTOGRAM_ENUMERATION(
- "CaptivePortal.OOBE.DiscrepancyWithShill.Online",
+ "CaptivePortal.OOBE.DiscrepancyWithShill_Online",
status,
NetworkPortalDetector::CAPTIVE_PORTAL_STATUS_COUNT);
} else if (network->restricted_pool()) {
UMA_HISTOGRAM_ENUMERATION(
- "CaptivePortal.OOBE.DiscrepancyWithShill.RestrictedPool",
+ "CaptivePortal.OOBE.DiscrepancyWithShill_RestrictedPool",
status,
NetworkPortalDetector::CAPTIVE_PORTAL_STATUS_COUNT);
} else {
UMA_HISTOGRAM_ENUMERATION(
- "CaptivePortal.OOBE.DiscrepancyWithShill.Offline",
+ "CaptivePortal.OOBE.DiscrepancyWithShill_Offline",
status,
NetworkPortalDetector::CAPTIVE_PORTAL_STATUS_COUNT);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698