| Index: chromeos/dbus/fake_easy_unlock_client.cc
|
| diff --git a/chromeos/dbus/fake_easy_unlock_client.cc b/chromeos/dbus/fake_easy_unlock_client.cc
|
| index 4aa0a8616264312f8ec3942f8977042870d003bb..fe0aee1984a8bae46501119291406cf86328ed76 100644
|
| --- a/chromeos/dbus/fake_easy_unlock_client.cc
|
| +++ b/chromeos/dbus/fake_easy_unlock_client.cc
|
| @@ -99,6 +99,7 @@ void FakeEasyUnlockClient::CreateSecureMessage(
|
| const std::string& associated_data,
|
| const std::string& public_metadata,
|
| const std::string& verification_key_id,
|
| + const std::string& decryption_key_id,
|
| const std::string& encryption_type,
|
| const std::string& signature_type,
|
| const DataCallback& callback) {
|
| @@ -109,6 +110,7 @@ void FakeEasyUnlockClient::CreateSecureMessage(
|
| "\"associated_data\": \"%s\","
|
| "\"public_metadata\": \"%s\","
|
| "\"verification_key_id\": \"%s\","
|
| + "\"decryption_key_id\": \"%s\","
|
| "\"encryption_type\": \"%s\","
|
| "\"signature_type\": \"%s\""
|
| "}}",
|
| @@ -117,6 +119,7 @@ void FakeEasyUnlockClient::CreateSecureMessage(
|
| associated_data.c_str(),
|
| public_metadata.c_str(),
|
| verification_key_id.c_str(),
|
| + decryption_key_id.c_str(),
|
| encryption_type.c_str(),
|
| signature_type.c_str()));
|
| }
|
|
|