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

Unified Diff: chromeos/dbus/biod/fake_biod_client.cc

Issue 2858003002: Roll src/third_party/cros_system_api/ c6eab9e4d..6139ae009 + API change (Closed)
Patch Set: Created 3 years, 8 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/dbus/biod/fake_biod_client.cc
diff --git a/chromeos/dbus/biod/fake_biod_client.cc b/chromeos/dbus/biod/fake_biod_client.cc
index 218225fde3880665ea25a3102cf462b2e7cc61da..7e3d703ada17f0d100228b009f363aaa6556830a 100644
--- a/chromeos/dbus/biod/fake_biod_client.cc
+++ b/chromeos/dbus/biod/fake_biod_client.cc
@@ -44,7 +44,8 @@ FakeBiodClient::~FakeBiodClient() {}
void FakeBiodClient::SendEnrollScanDone(const std::string& fingerprint,
biod::ScanResult type_result,
- bool is_complete) {
+ bool is_complete,
+ int32_t percent_complete) {
// Enroll scan signals do nothing if an enroll session is not happening.
if (current_session_ != FingerprintSession::ENROLL)
return;
@@ -62,7 +63,8 @@ void FakeBiodClient::SendEnrollScanDone(const std::string& fingerprint,
}
for (auto& observer : observers_)
- observer.BiodEnrollScanDoneReceived(type_result, is_complete);
+ observer.BiodEnrollScanDoneReceived(type_result, is_complete,
+ percent_complete);
}
void FakeBiodClient::SendAuthScanDone(const std::string& fingerprint,

Powered by Google App Engine
This is Rietveld 408576698