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

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: Fix nits Created 6 years, 4 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 | « 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 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
« no previous file with comments | « chromeos/login_event_recorder.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698