Index: chromeos/dbus/shill_device_client.cc |
diff --git a/chromeos/dbus/shill_device_client.cc b/chromeos/dbus/shill_device_client.cc |
index e9ad998d6d9476a74766599f7e4795b412bc6913..94934b416226cbcf025d9a8de883b38f84a1ad97 100644 |
--- a/chromeos/dbus/shill_device_client.cc |
+++ b/chromeos/dbus/shill_device_client.cc |
@@ -8,7 +8,6 @@ |
#include "base/message_loop/message_loop.h" |
#include "base/stl_util.h" |
#include "base/values.h" |
-#include "chromeos/dbus/fake_shill_device_client.h" |
#include "chromeos/dbus/shill_property_changed_observer.h" |
#include "dbus/bus.h" |
#include "dbus/message.h" |
@@ -235,12 +234,8 @@ ShillDeviceClient::ShillDeviceClient() {} |
ShillDeviceClient::~ShillDeviceClient() {} |
// static |
-ShillDeviceClient* ShillDeviceClient::Create( |
- DBusClientImplementationType type) { |
- if (type == REAL_DBUS_CLIENT_IMPLEMENTATION) |
- return new ShillDeviceClientImpl(); |
- DCHECK_EQ(STUB_DBUS_CLIENT_IMPLEMENTATION, type); |
- return new FakeShillDeviceClient(); |
+ShillDeviceClient* ShillDeviceClient::Create() { |
+ return new ShillDeviceClientImpl(); |
} |
} // namespace chromeos |