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

Unified Diff: chromeos/login/auth/extended_authenticator_impl.cc

Issue 2208583006: UMA for pin unlock success/failure. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Fixed patch set 2 errors. Created 4 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
Index: chromeos/login/auth/extended_authenticator_impl.cc
diff --git a/chromeos/login/auth/extended_authenticator_impl.cc b/chromeos/login/auth/extended_authenticator_impl.cc
index 98ec0b90c89108d49c3289ae27e918806caf92f4..48a4e6f6f01ad1011ebe00548677e906f9da591d 100644
--- a/chromeos/login/auth/extended_authenticator_impl.cc
+++ b/chromeos/login/auth/extended_authenticator_impl.cc
@@ -329,7 +329,7 @@ void ExtendedAuthenticatorImpl::OnOperationComplete(
bool success,
cryptohome::MountError return_code) {
RecordEndMarker(time_marker);
- if (return_code == cryptohome::MOUNT_ERROR_NONE) {
+ if (return_code != cryptohome::MOUNT_ERROR_NONE) {
jdufault 2016/08/12 21:57:34 ?
sammiequon 2016/08/16 17:29:09 Done.
if (!success_callback.is_null())
success_callback.Run();
if (old_consumer_)

Powered by Google App Engine
This is Rietveld 408576698