| Index: chromeos/dbus/shill_manager_client.cc
|
| diff --git a/chromeos/dbus/shill_manager_client.cc b/chromeos/dbus/shill_manager_client.cc
|
| index f790e4e27991ebb654e45eb232add45025632e9c..0ad602f22bbb52656ea07c47ee1b11451972b10f 100644
|
| --- a/chromeos/dbus/shill_manager_client.cc
|
| +++ b/chromeos/dbus/shill_manager_client.cc
|
| @@ -8,7 +8,6 @@
|
| #include "base/logging.h"
|
| #include "base/message_loop/message_loop.h"
|
| #include "base/values.h"
|
| -#include "chromeos/dbus/fake_shill_manager_client.h"
|
| #include "chromeos/dbus/shill_property_changed_observer.h"
|
| #include "dbus/bus.h"
|
| #include "dbus/message.h"
|
| @@ -237,12 +236,8 @@ ShillManagerClient::ShillManagerClient() {}
|
| ShillManagerClient::~ShillManagerClient() {}
|
|
|
| // static
|
| -ShillManagerClient* ShillManagerClient::Create(
|
| - DBusClientImplementationType type) {
|
| - if (type == REAL_DBUS_CLIENT_IMPLEMENTATION)
|
| - return new ShillManagerClientImpl();
|
| - DCHECK_EQ(STUB_DBUS_CLIENT_IMPLEMENTATION, type);
|
| - return new FakeShillManagerClient();
|
| +ShillManagerClient* ShillManagerClient::Create() {
|
| + return new ShillManagerClientImpl();
|
| }
|
|
|
| // ShillManagerClient::VerificationProperties implementation.
|
|
|