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

Unified Diff: chromeos/login_event_recorder.cc

Issue 409113002: Refactoring: get rid of notificataions in ParallelAuthenticator (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
« chromeos/login_event_recorder.h ('K') | « chromeos/login_event_recorder.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/login_event_recorder.cc
diff --git a/chromeos/login_event_recorder.cc b/chromeos/login_event_recorder.cc
index bed8f8b98fb9fc4d8aee77860aaad9f4bf4a5a74..f41c1127c38e499b0d1e3a673aa767c8eb4d381a 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
« chromeos/login_event_recorder.h ('K') | « chromeos/login_event_recorder.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698