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

Unified Diff: chromeos/dbus/fake_cryptohome_client.cc

Issue 2727713003: Update FWMP in TPM (Closed)
Patch Set: Test fixed Created 3 years, 9 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/fake_cryptohome_client.cc
diff --git a/chromeos/dbus/fake_cryptohome_client.cc b/chromeos/dbus/fake_cryptohome_client.cc
index 8d7e841c85714ee05693669398a561b7c049d368..7b9af8d52535d7a441727c0086cb647ba0848855 100644
--- a/chromeos/dbus/fake_cryptohome_client.cc
+++ b/chromeos/dbus/fake_cryptohome_client.cc
@@ -574,6 +574,14 @@ void FakeCryptohomeClient::FlushAndSignBootAttributes(
ReturnProtobufMethodCallback(reply, callback);
}
+void FakeCryptohomeClient::AsyncTpmUpdateFirmwareManagementParameters(
+ const std::string& method_name,
+ const google::protobuf::MessageLite& request,
+ const ProtobufMethodCallback& callback) {
+ cryptohome::BaseReply reply;
+ ReturnProtobufMethodCallback(reply, callback);
+}
+
void FakeCryptohomeClient::SetServiceIsAvailable(bool is_available) {
service_is_available_ = is_available;
if (is_available) {

Powered by Google App Engine
This is Rietveld 408576698