| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/profiles/profile_metrics.h" | 5 #include "chrome/browser/profiles/profile_metrics.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/logging.h" | 8 #include "base/logging.h" |
| 9 #include "base/metrics/histogram.h" | 9 #include "base/metrics/histogram.h" |
| 10 #include "chrome/browser/browser_process.h" | 10 #include "chrome/browser/browser_process.h" |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 break; | 322 break; |
| 323 } | 323 } |
| 324 UMA_HISTOGRAM_ENUMERATION("Profile.Avatar", icon_name, | 324 UMA_HISTOGRAM_ENUMERATION("Profile.Avatar", icon_name, |
| 325 NUM_PROFILE_AVATAR_METRICS); | 325 NUM_PROFILE_AVATAR_METRICS); |
| 326 } | 326 } |
| 327 | 327 |
| 328 void ProfileMetrics::LogProfileDeleteUser(ProfileDelete metric) { | 328 void ProfileMetrics::LogProfileDeleteUser(ProfileDelete metric) { |
| 329 DCHECK(metric < NUM_DELETE_PROFILE_METRICS); | 329 DCHECK(metric < NUM_DELETE_PROFILE_METRICS); |
| 330 UMA_HISTOGRAM_ENUMERATION("Profile.DeleteProfileAction", metric, | 330 UMA_HISTOGRAM_ENUMERATION("Profile.DeleteProfileAction", metric, |
| 331 NUM_DELETE_PROFILE_METRICS); | 331 NUM_DELETE_PROFILE_METRICS); |
| 332 UMA_HISTOGRAM_ENUMERATION("Profile.NetUserCount", PROFILE_DELETED, | 332 if (metric != DELETE_PROFILE_USER_MANAGER_SHOW_WARNING) { |
| 333 NUM_PROFILE_NET_METRICS); | 333 // If a user was actually deleted, update the net user count. |
| 334 UMA_HISTOGRAM_ENUMERATION("Profile.NetUserCount", PROFILE_DELETED, |
| 335 NUM_PROFILE_NET_METRICS); |
| 336 } |
| 334 } | 337 } |
| 335 | 338 |
| 336 void ProfileMetrics::LogProfileOpenMethod(ProfileOpen metric) { | 339 void ProfileMetrics::LogProfileOpenMethod(ProfileOpen metric) { |
| 337 DCHECK(metric < NUM_PROFILE_OPEN_METRICS); | 340 DCHECK(metric < NUM_PROFILE_OPEN_METRICS); |
| 338 UMA_HISTOGRAM_ENUMERATION("Profile.OpenMethod", metric, | 341 UMA_HISTOGRAM_ENUMERATION("Profile.OpenMethod", metric, |
| 339 NUM_PROFILE_OPEN_METRICS); | 342 NUM_PROFILE_OPEN_METRICS); |
| 340 } | 343 } |
| 341 | 344 |
| 342 void ProfileMetrics::LogProfileSwitch( | 345 void ProfileMetrics::LogProfileSwitch( |
| 343 ProfileOpen metric, | 346 ProfileOpen metric, |
| (...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 UMA_HISTOGRAM_ENUMERATION("Profile.SyncSignIn", | 531 UMA_HISTOGRAM_ENUMERATION("Profile.SyncSignIn", |
| 529 GetProfileType(profile_path), | 532 GetProfileType(profile_path), |
| 530 NUM_PROFILE_TYPE_METRICS); | 533 NUM_PROFILE_TYPE_METRICS); |
| 531 } | 534 } |
| 532 | 535 |
| 533 void ProfileMetrics::LogProfileUpdate(const base::FilePath& profile_path) { | 536 void ProfileMetrics::LogProfileUpdate(const base::FilePath& profile_path) { |
| 534 UMA_HISTOGRAM_ENUMERATION("Profile.Update", | 537 UMA_HISTOGRAM_ENUMERATION("Profile.Update", |
| 535 GetProfileType(profile_path), | 538 GetProfileType(profile_path), |
| 536 NUM_PROFILE_TYPE_METRICS); | 539 NUM_PROFILE_TYPE_METRICS); |
| 537 } | 540 } |
| OLD | NEW |