| Index: device/bluetooth/test/bluetooth_test.cc
|
| diff --git a/device/bluetooth/test/bluetooth_test.cc b/device/bluetooth/test/bluetooth_test.cc
|
| index e7c55144726e401cf629b1b2226380e2688bbf2e..ca2b078cddc8a5082135088f410a7c8bbc5a8d89 100644
|
| --- a/device/bluetooth/test/bluetooth_test.cc
|
| +++ b/device/bluetooth/test/bluetooth_test.cc
|
| @@ -3,11 +3,6 @@
|
| // found in the LICENSE file.
|
|
|
| #include "device/bluetooth/test/bluetooth_test.h"
|
| -
|
| -#include "base/bind.h"
|
| -#include "base/logging.h"
|
| -#include "base/run_loop.h"
|
| -#include "device/bluetooth/bluetooth_adapter.h"
|
|
|
| namespace device {
|
|
|
| @@ -17,32 +12,4 @@
|
| BluetoothTestBase::~BluetoothTestBase() {
|
| }
|
|
|
| -void BluetoothTestBase::Callback() {
|
| - ++callback_count_;
|
| -}
|
| -
|
| -void BluetoothTestBase::DiscoverySessionCallback(
|
| - scoped_ptr<BluetoothDiscoverySession> discovery_session) {
|
| - ++callback_count_;
|
| - discovery_sessions_.push_back(discovery_session.release());
|
| -}
|
| -
|
| -void BluetoothTestBase::ErrorCallback() {
|
| - ++error_callback_count_;
|
| -}
|
| -
|
| -base::Closure BluetoothTestBase::GetCallback() {
|
| - return base::Bind(&BluetoothTestBase::Callback, base::Unretained(this));
|
| -}
|
| -
|
| -BluetoothAdapter::DiscoverySessionCallback
|
| -BluetoothTestBase::GetDiscoverySessionCallback() {
|
| - return base::Bind(&BluetoothTestBase::DiscoverySessionCallback,
|
| - base::Unretained(this));
|
| -}
|
| -
|
| -BluetoothAdapter::ErrorCallback BluetoothTestBase::GetErrorCallback() {
|
| - return base::Bind(&BluetoothTestBase::ErrorCallback, base::Unretained(this));
|
| -}
|
| -
|
| } // namespace device
|
|
|