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

Unified Diff: chromeos/dbus/cryptohome_client.h

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/cryptohome_client.h
diff --git a/chromeos/dbus/cryptohome_client.h b/chromeos/dbus/cryptohome_client.h
index 8fc61f94b0e4f64241a565479d13f9aad0ed5e41..e613a63997de714706125c96d63a4b54371c5a65 100644
--- a/chromeos/dbus/cryptohome_client.h
+++ b/chromeos/dbus/cryptohome_client.h
@@ -35,6 +35,12 @@ class Identification;
} // namespace cryptohome
+namespace google {
+namespace protobuf {
+class MessageLite;
+}
Daniel Erat 2017/03/06 21:18:26 nit: add // namespace protobuf
igorcov 2017/03/09 12:22:57 Done.
+} // namespace google
+
namespace chromeos {
// CryptohomeClient is used to communicate with the Cryptohome service.
@@ -555,6 +561,11 @@ class CHROMEOS_EXPORT CryptohomeClient : public DBusClient {
const cryptohome::FlushAndSignBootAttributesRequest& request,
const ProtobufMethodCallback& callback) = 0;
+ virtual void AsyncTpmUpdateFirmwareManagementParameters(
Daniel Erat 2017/03/06 21:18:26 add a comment documenting what this does. can you
igorcov 2017/03/09 12:22:57 Done.
+ const std::string& method_name,
Daniel Erat 2017/03/06 21:18:26 i think that this leaks too many of the IPC implem
igorcov 2017/03/09 12:22:57 Done.
+ const google::protobuf::MessageLite& request,
+ const ProtobufMethodCallback& callback) = 0;
+
protected:
// Create() should be used instead.
CryptohomeClient();

Powered by Google App Engine
This is Rietveld 408576698