Index: chromeos/dbus/shill_service_client.cc |
diff --git a/chromeos/dbus/shill_service_client.cc b/chromeos/dbus/shill_service_client.cc |
index 696fb63cd95b9bb11238e2c9401ba4ab883e56ae..063d1e3338575586310050361c16521c54e039df 100644 |
--- a/chromeos/dbus/shill_service_client.cc |
+++ b/chromeos/dbus/shill_service_client.cc |
@@ -9,8 +9,8 @@ |
#include "base/message_loop/message_loop.h" |
#include "base/stl_util.h" |
#include "base/values.h" |
+#include "chromeos/dbus/fake_shill_service_client.h" |
#include "chromeos/dbus/shill_property_changed_observer.h" |
-#include "chromeos/dbus/shill_service_client_stub.h" |
#include "chromeos/network/network_event_log.h" |
#include "dbus/bus.h" |
#include "dbus/message.h" |
@@ -278,7 +278,7 @@ ShillServiceClient* ShillServiceClient::Create( |
if (type == REAL_DBUS_CLIENT_IMPLEMENTATION) |
return new ShillServiceClientImpl(); |
DCHECK_EQ(STUB_DBUS_CLIENT_IMPLEMENTATION, type); |
- return new ShillServiceClientStub(); |
+ return new FakeShillServiceClient(); |
} |
} // namespace chromeos |