| Index: chromeos/dbus/shill_profile_client.cc
|
| diff --git a/chromeos/dbus/shill_profile_client.cc b/chromeos/dbus/shill_profile_client.cc
|
| index 05bfa04958b8fb47483661ac91dda2b10bbbb23f..6fb0a1b595394fe2cddaf6b2d24b75871556c960 100644
|
| --- a/chromeos/dbus/shill_profile_client.cc
|
| +++ b/chromeos/dbus/shill_profile_client.cc
|
| @@ -9,7 +9,6 @@
|
| #include "base/stl_util.h"
|
| #include "base/values.h"
|
| #include "chromeos/dbus/dbus_thread_manager.h"
|
| -#include "chromeos/dbus/fake_shill_profile_client.h"
|
| #include "chromeos/dbus/shill_property_changed_observer.h"
|
| #include "dbus/bus.h"
|
| #include "dbus/message.h"
|
| @@ -135,12 +134,8 @@ ShillProfileClient::ShillProfileClient() {}
|
| ShillProfileClient::~ShillProfileClient() {}
|
|
|
| // static
|
| -ShillProfileClient* ShillProfileClient::Create(
|
| - DBusClientImplementationType type) {
|
| - if (type == REAL_DBUS_CLIENT_IMPLEMENTATION)
|
| - return new ShillProfileClientImpl();
|
| - DCHECK_EQ(STUB_DBUS_CLIENT_IMPLEMENTATION, type);
|
| - return new FakeShillProfileClient();
|
| +ShillProfileClient* ShillProfileClient::Create() {
|
| + return new ShillProfileClientImpl();
|
| }
|
|
|
| } // namespace chromeos
|
|
|