| Index: chromeos/dbus/fake_cryptohome_client.h
|
| diff --git a/chromeos/dbus/fake_cryptohome_client.h b/chromeos/dbus/fake_cryptohome_client.h
|
| index 810747b817dadb73cecd8c4a7dda75690b032341..02dece263f323ff5a71e36b183925ef21a9d9f0b 100644
|
| --- a/chromeos/dbus/fake_cryptohome_client.h
|
| +++ b/chromeos/dbus/fake_cryptohome_client.h
|
| @@ -220,18 +220,12 @@
|
| const ProtobufMethodCallback& callback);
|
|
|
| // Posts tasks which return fake results to the UI thread.
|
| - void ReturnAsyncMethodResult(const AsyncMethodCallback& callback);
|
| -
|
| - // Posts tasks which return fake data to the UI thread.
|
| - void ReturnAsyncMethodData(const AsyncMethodCallback& callback,
|
| - const std::string& data);
|
| -
|
| - // This method is used to implement ReturnAsyncMethodResult without data.
|
| - void ReturnAsyncMethodResultInternal(const AsyncMethodCallback& callback);
|
| -
|
| - // This method is used to implement ReturnAsyncMethodResult with data.
|
| - void ReturnAsyncMethodDataInternal(const AsyncMethodCallback& callback,
|
| - const std::string& data);
|
| + void ReturnAsyncMethodResult(const AsyncMethodCallback& callback,
|
| + bool returns_data);
|
| +
|
| + // This method is used to implement ReturnAsyncMethodResult.
|
| + void ReturnAsyncMethodResultInternal(const AsyncMethodCallback& callback,
|
| + bool returns_data);
|
|
|
| bool service_is_available_;
|
| int async_call_id_;
|
|
|