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

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

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
« no previous file with comments | « no previous file | chrome/browser/chromeos/browser_notification_observers.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/browser_notification_observers.h
diff --git a/chrome/browser/chromeos/browser_notification_observers.h b/chrome/browser/chromeos/browser_notification_observers.h
index e2921af37effa42d4461ab98b9059b039dbc9ec4..13dacce76199090789bc226571ed55b4ef363d64 100644
--- a/chrome/browser/chromeos/browser_notification_observers.h
+++ b/chrome/browser/chromeos/browser_notification_observers.h
@@ -7,6 +7,7 @@
#include "base/atomic_sequence_num.h"
#include "base/singleton.h"
+#include "base/time.h"
#include "chrome/common/notification_observer.h"
#include "chrome/common/notification_registrar.h"
#include "chrome/common/notification_source.h"
@@ -26,6 +27,10 @@ class InitialTabNotificationObserver : public NotificationObserver {
return Singleton<InitialTabNotificationObserver>::get();
}
+ void SetLoginSuccessTime() {
+ login_success_time_ = base::Time::NowFromSystemTime();
+ }
+
// NotificationObserver implementation.
virtual void Observe(NotificationType type,
const NotificationSource& source,
@@ -34,6 +39,7 @@ class InitialTabNotificationObserver : public NotificationObserver {
private:
NotificationRegistrar registrar_;
base::AtomicSequenceNumber num_tabs_;
+ base::Time login_success_time_;
DISALLOW_COPY_AND_ASSIGN(InitialTabNotificationObserver);
};
« no previous file with comments | « no previous file | chrome/browser/chromeos/browser_notification_observers.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698