Index: chromeos/dbus/shill_ipconfig_client.cc |
diff --git a/chromeos/dbus/shill_ipconfig_client.cc b/chromeos/dbus/shill_ipconfig_client.cc |
index 46aeb71ed143c45a9e62dfa85f02850e836e6cec..e30346a88808262d88b1f361fcacbc5eb25adf82 100644 |
--- a/chromeos/dbus/shill_ipconfig_client.cc |
+++ b/chromeos/dbus/shill_ipconfig_client.cc |
@@ -8,7 +8,7 @@ |
#include "base/message_loop/message_loop.h" |
#include "base/stl_util.h" |
#include "base/values.h" |
-#include "chromeos/dbus/shill_ipconfig_client_stub.h" |
+#include "chromeos/dbus/fake_shill_ipconfig_client.h" |
#include "chromeos/dbus/shill_property_changed_observer.h" |
#include "dbus/bus.h" |
#include "dbus/message.h" |
@@ -177,7 +177,7 @@ ShillIPConfigClient* ShillIPConfigClient::Create( |
if (type == REAL_DBUS_CLIENT_IMPLEMENTATION) |
return new ShillIPConfigClientImpl(); |
DCHECK_EQ(STUB_DBUS_CLIENT_IMPLEMENTATION, type); |
- return new ShillIPConfigClientStub(); |
+ return new FakeShillIPConfigClient(); |
} |
} // namespace chromeos |