summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/browser/chromeos/login/user_manager.cc6
-rw-r--r--chrome/browser/protector/histograms.cc8
2 files changed, 7 insertions, 7 deletions
diff --git a/chrome/browser/chromeos/login/user_manager.cc b/chrome/browser/chromeos/login/user_manager.cc
index 4adcf61..d507f95 100644
--- a/chrome/browser/chromeos/login/user_manager.cc
+++ b/chrome/browser/chromeos/login/user_manager.cc
@@ -100,13 +100,13 @@ enum ProfileDownloadResult {
// Time histogram name for the default profile image download.
const char kProfileDownloadDefaultTime[] =
- "UserImage.ProfileDownloadDefaultTime";
+ "UserImage.ProfileDownloadTime.Default";
// Time histogram name for a failed profile image download.
const char kProfileDownloadFailureTime[] =
- "UserImage.ProfileDownloadFailureTime";
+ "UserImage.ProfileDownloadTime.Failure";
// Time histogram name for a successful profile image download.
const char ProfileDownloadSuccessTime[] =
- "UserImage.ProfileDownloadSuccessTime";
+ "UserImage.ProfileDownloadTime.Success";
// Used to handle the asynchronous response of deleting a cryptohome directory.
class RemoveAttempt : public CryptohomeLibrary::Delegate {
diff --git a/chrome/browser/protector/histograms.cc b/chrome/browser/protector/histograms.cc
index 7166d9c..2669d69 100644
--- a/chrome/browser/protector/histograms.cc
+++ b/chrome/browser/protector/histograms.cc
@@ -20,13 +20,13 @@ const char kProtectorValueChangedCounter[] = "Protector.ValueChangedCounter";
const char kProtectorValueValidCounter[] = "Protector.ValueValidCounter";
const char kProtectorHistogramNewSearchProvider[] =
- "Protector.NewSearchProvider";
+ "Protector.SearchProvider.New";
const char kProtectorHistogramSearchProviderApplied[] =
- "Protector.SearchProviderApplied";
+ "Protector.SearchProvider.Applied";
const char kProtectorHistogramSearchProviderDiscarded[] =
- "Protector.SearchProviderDiscarded";
+ "Protector.SearchProvider.Discarded";
const char kProtectorHistogramSearchProviderTimeout[] =
- "Protector.SearchProviderTimeout";
+ "Protector.SearchProvider.Timeout";
const int kProtectorMaxSearchProviderID = SEARCH_ENGINE_MAX;