| Index: chromeos/login_event_recorder.cc
|
| diff --git a/chromeos/login_event_recorder.cc b/chromeos/login_event_recorder.cc
|
| index e2e2e3f9185502c0701662cc959a9d811dc39cf4..c3d67d6da1bbc4ba1ef11dfc2f8f503d2aca6af6 100644
|
| --- a/chromeos/login_event_recorder.cc
|
| +++ b/chromeos/login_event_recorder.cc
|
| @@ -34,4 +34,14 @@ void LoginEventRecorder::AddLoginTimeMarker(const std::string& marker_name,
|
| delegate_->AddLoginTimeMarker(marker_name, send_to_uma);
|
| }
|
|
|
| +void LoginEventRecorder::RecordAuthenticationSuccess() {
|
| + if (delegate_)
|
| + delegate_->RecordAuthenticationSuccess();
|
| +}
|
| +
|
| +void LoginEventRecorder::RecordAuthenticationFailure() {
|
| + if (delegate_)
|
| + delegate_->RecordAuthenticationFailure();
|
| +}
|
| +
|
| } // namespace chromeos
|
|
|