| Index: chromeos/dbus/bluetooth_device_client.cc
|
| diff --git a/chromeos/dbus/bluetooth_device_client.cc b/chromeos/dbus/bluetooth_device_client.cc
|
| index 605872cb9357f55b8c37e2b4746fc40f25db766a..033daf38548302f1e826c48b4d3ce22a73dcef99 100644
|
| --- a/chromeos/dbus/bluetooth_device_client.cc
|
| +++ b/chromeos/dbus/bluetooth_device_client.cc
|
| @@ -7,7 +7,6 @@
|
| #include "base/bind.h"
|
| #include "base/logging.h"
|
| #include "base/stl_util.h"
|
| -#include "chromeos/dbus/fake_bluetooth_device_client.h"
|
| #include "dbus/bus.h"
|
| #include "dbus/message.h"
|
| #include "dbus/object_manager.h"
|
| @@ -348,12 +347,8 @@ BluetoothDeviceClient::BluetoothDeviceClient() {
|
| BluetoothDeviceClient::~BluetoothDeviceClient() {
|
| }
|
|
|
| -BluetoothDeviceClient* BluetoothDeviceClient::Create(
|
| - DBusClientImplementationType type) {
|
| - if (type == REAL_DBUS_CLIENT_IMPLEMENTATION)
|
| - return new BluetoothDeviceClientImpl();
|
| - DCHECK_EQ(STUB_DBUS_CLIENT_IMPLEMENTATION, type);
|
| - return new FakeBluetoothDeviceClient();
|
| +BluetoothDeviceClient* BluetoothDeviceClient::Create() {
|
| + return new BluetoothDeviceClientImpl();
|
| }
|
|
|
| } // namespace chromeos
|
|
|