| Index: device/bluetooth/test/mock_bluetooth_advertisement.cc
|
| diff --git a/device/bluetooth/test/mock_bluetooth_advertisement.cc b/device/bluetooth/test/mock_bluetooth_advertisement.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ddba5166a87947be208f2ef087773db302323603
|
| --- /dev/null
|
| +++ b/device/bluetooth/test/mock_bluetooth_advertisement.cc
|
| @@ -0,0 +1,21 @@
|
| +// Copyright 2015 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "device/bluetooth/test/mock_bluetooth_advertisement.h"
|
| +
|
| +namespace device {
|
| +
|
| +MockBluetoothAdvertisement::MockBluetoothAdvertisement() {
|
| +}
|
| +
|
| +MockBluetoothAdvertisement::~MockBluetoothAdvertisement() {
|
| +}
|
| +
|
| +void MockBluetoothAdvertisement::Unregister(
|
| + const SuccessCallback& success_callback,
|
| + const ErrorCallback& error_callback) {
|
| + success_callback.Run();
|
| +}
|
| +
|
| +} // namespace chromeos
|
|
|