summaryrefslogtreecommitdiffstats
path: root/device/bluetooth/test/mock_bluetooth_advertisement.cc
blob: 746108af907f2a2122cca5d988fef5ecd0e4d922 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 device