Index: chromeos/login_event_recorder.h |
diff --git a/chromeos/login_event_recorder.h b/chromeos/login_event_recorder.h |
index d2adbb2d5246d7e298c93048150569d3eb40177e..2b489e2dd04aef686e8360e8fe96b99c33ca718d 100644 |
--- a/chromeos/login_event_recorder.h |
+++ b/chromeos/login_event_recorder.h |
@@ -20,6 +20,8 @@ class CHROMEOS_EXPORT LoginEventRecorder { |
public: |
virtual void AddLoginTimeMarker(const std::string& marker_name, |
bool send_to_uma) = 0; |
+ virtual void RecordAuthenticationSuccess() = 0; |
+ virtual void RecordAuthenticationFailure() = 0; |
}; |
LoginEventRecorder(); |
virtual ~LoginEventRecorder(); |
@@ -34,6 +36,9 @@ class CHROMEOS_EXPORT LoginEventRecorder { |
// the identifier BootTime.|marker_name|. |
void AddLoginTimeMarker(const std::string& marker_name, bool send_to_uma); |
+ void RecordAuthenticationSuccess(); |
Nikita (slow)
2014/07/22 15:50:26
nit: Add short comment (single one for both method
Denis Kuznetsov (DE-MUC)
2014/08/20 13:50:19
Done.
|
+ void RecordAuthenticationFailure(); |
+ |
private: |
Delegate* delegate_; |