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

Unified Diff: chrome/browser/chromeos/browser_notification_observers.cc

Issue 2899014: Add login time metric for chromeos. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Change metric name Created 10 years, 5 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
Index: chrome/browser/chromeos/browser_notification_observers.cc
diff --git a/chrome/browser/chromeos/browser_notification_observers.cc b/chrome/browser/chromeos/browser_notification_observers.cc
index f63ade1910dbc05aa1d5e2fd27e3875992d2b470..41c35dc08e30db1e3d4936007f85b3378290b92c 100644
--- a/chrome/browser/chromeos/browser_notification_observers.cc
+++ b/chrome/browser/chromeos/browser_notification_observers.cc
@@ -28,7 +28,10 @@ void InitialTabNotificationObserver::Observe(
const NotificationDetails& details) {
// Only log for first tab to render. Make sure this is only done once.
if (type == NotificationType::LOAD_START && num_tabs_.GetNext() == 0) {
- // If we can't post it, it doesn't matter.
+ // Post difference between first tab and login succeess time as login time.
+ UMA_HISTOGRAM_TIMES("BootTime.Login",
+ base::Time::NowFromSystemTime() - login_success_time_);
+ // Post chrome first render stat.
BootTimesLoader::RecordCurrentStats("chrome-first-render");
registrar_.Remove(this, NotificationType::LOAD_START,
NotificationService::AllSources());
@@ -49,7 +52,7 @@ void LogLoginSuccessObserver::Observe(NotificationType type,
DCHECK(type == NotificationType::LOGIN_AUTHENTICATION);
Details<AuthenticationNotificationDetails> auth_details(details);
if (auth_details->success()) {
- // If we can't post it, it doesn't matter.
+ InitialTabNotificationObserver::Get()->SetLoginSuccessTime();
BootTimesLoader::RecordCurrentStats("login-successful");
registrar_.Remove(this, NotificationType::LOGIN_AUTHENTICATION,
NotificationService::AllSources());
« no previous file with comments | « chrome/browser/chromeos/browser_notification_observers.h ('k') | chrome/browser/chromeos/login/google_authenticator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698