| Index: chromeos/dbus/cryptohome_client.cc
|
| diff --git a/chromeos/dbus/cryptohome_client.cc b/chromeos/dbus/cryptohome_client.cc
|
| index c117f58836c7d1f688900bc8747c8cb4e292dc76..cd027e3e6249f3b87329ff5fcff342934f8dc176 100644
|
| --- a/chromeos/dbus/cryptohome_client.cc
|
| +++ b/chromeos/dbus/cryptohome_client.cc
|
| @@ -10,7 +10,7 @@
|
| #include "base/message_loop/message_loop.h"
|
| #include "chromeos/cryptohome/async_method_caller.h"
|
| #include "chromeos/dbus/blocking_method_caller.h"
|
| -#include "chromeos/dbus/cryptohome_client_stub.h"
|
| +#include "chromeos/dbus/fake_cryptohome_client.h"
|
| #include "dbus/bus.h"
|
| #include "dbus/message.h"
|
| #include "dbus/object_path.h"
|
| @@ -857,7 +857,7 @@ CryptohomeClient* CryptohomeClient::Create(DBusClientImplementationType type) {
|
| if (type == REAL_DBUS_CLIENT_IMPLEMENTATION)
|
| return new CryptohomeClientImpl();
|
| DCHECK_EQ(STUB_DBUS_CLIENT_IMPLEMENTATION, type);
|
| - return new CryptohomeClientStubImpl();
|
| + return new FakeCryptohomeClient();
|
| }
|
|
|
| // static
|
|
|