| Index: chromeos/dbus/bluetooth_profile_manager_client.cc
|
| diff --git a/chromeos/dbus/bluetooth_profile_manager_client.cc b/chromeos/dbus/bluetooth_profile_manager_client.cc
|
| index aebd0d8929ba8fc122d375f92ec9a2098a4c897e..ee2fe2b5d1fd05e1afe24e19f30f196a7407add6 100644
|
| --- a/chromeos/dbus/bluetooth_profile_manager_client.cc
|
| +++ b/chromeos/dbus/bluetooth_profile_manager_client.cc
|
| @@ -6,7 +6,6 @@
|
|
|
| #include "base/bind.h"
|
| #include "base/logging.h"
|
| -#include "chromeos/dbus/fake_bluetooth_profile_manager_client.h"
|
| #include "dbus/bus.h"
|
| #include "dbus/message.h"
|
| #include "dbus/object_path.h"
|
| @@ -234,12 +233,8 @@ BluetoothProfileManagerClient::BluetoothProfileManagerClient() {
|
| BluetoothProfileManagerClient::~BluetoothProfileManagerClient() {
|
| }
|
|
|
| -BluetoothProfileManagerClient* BluetoothProfileManagerClient::Create(
|
| - DBusClientImplementationType type) {
|
| - if (type == REAL_DBUS_CLIENT_IMPLEMENTATION)
|
| - return new BluetoothProfileManagerClientImpl();
|
| - DCHECK_EQ(STUB_DBUS_CLIENT_IMPLEMENTATION, type);
|
| - return new FakeBluetoothProfileManagerClient();
|
| +BluetoothProfileManagerClient* BluetoothProfileManagerClient::Create() {
|
| + return new BluetoothProfileManagerClientImpl();
|
| }
|
|
|
| } // namespace chromeos
|
|
|