Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / chromeos / login_event_recorder.cc
index e2e2e3f..c3d67d6 100644 (file)
@@ -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