| Index: chromeos/dbus/bluetooth_adapter_client.cc
|
| diff --git a/chromeos/dbus/bluetooth_adapter_client.cc b/chromeos/dbus/bluetooth_adapter_client.cc
|
| index d7c383f349c35061bd774087f8e7d8908eaa6772..afc379b93a64844c6fe3cd2af82facd69ce6d130 100644
|
| --- a/chromeos/dbus/bluetooth_adapter_client.cc
|
| +++ b/chromeos/dbus/bluetooth_adapter_client.cc
|
| @@ -6,7 +6,6 @@
|
|
|
| #include "base/bind.h"
|
| #include "base/logging.h"
|
| -#include "chromeos/dbus/fake_bluetooth_adapter_client.h"
|
| #include "dbus/bus.h"
|
| #include "dbus/message.h"
|
| #include "dbus/object_manager.h"
|
| @@ -258,12 +257,8 @@ BluetoothAdapterClient::BluetoothAdapterClient() {
|
| BluetoothAdapterClient::~BluetoothAdapterClient() {
|
| }
|
|
|
| -BluetoothAdapterClient* BluetoothAdapterClient::Create(
|
| - DBusClientImplementationType type) {
|
| - if (type == REAL_DBUS_CLIENT_IMPLEMENTATION)
|
| - return new BluetoothAdapterClientImpl();
|
| - DCHECK_EQ(STUB_DBUS_CLIENT_IMPLEMENTATION, type);
|
| - return new FakeBluetoothAdapterClient();
|
| +BluetoothAdapterClient* BluetoothAdapterClient::Create() {
|
| + return new BluetoothAdapterClientImpl;
|
| }
|
|
|
| } // namespace chromeos
|
|
|