Index: chromeos/dbus/cryptohome_client.cc |
diff --git a/chromeos/dbus/cryptohome_client.cc b/chromeos/dbus/cryptohome_client.cc |
index 7165aa75950c30e114e99a6546cd47081d9b6443..f0bbd18f5dbfbd65dee39f1fd2a79291d9861f9b 100644 |
--- a/chromeos/dbus/cryptohome_client.cc |
+++ b/chromeos/dbus/cryptohome_client.cc |
@@ -10,7 +10,6 @@ |
#include "base/message_loop/message_loop.h" |
#include "chromeos/cryptohome/async_method_caller.h" |
#include "chromeos/dbus/blocking_method_caller.h" |
-#include "chromeos/dbus/fake_cryptohome_client.h" |
#include "dbus/bus.h" |
#include "dbus/message.h" |
#include "dbus/object_path.h" |
@@ -946,11 +945,8 @@ CryptohomeClient::CryptohomeClient() {} |
CryptohomeClient::~CryptohomeClient() {} |
// static |
-CryptohomeClient* CryptohomeClient::Create(DBusClientImplementationType type) { |
- if (type == REAL_DBUS_CLIENT_IMPLEMENTATION) |
- return new CryptohomeClientImpl(); |
- DCHECK_EQ(STUB_DBUS_CLIENT_IMPLEMENTATION, type); |
- return new FakeCryptohomeClient(); |
+CryptohomeClient* CryptohomeClient::Create() { |
+ return new CryptohomeClientImpl(); |
} |
// static |