1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "device/bluetooth/test/mock_bluetooth_adapter.h"
6
7namespace device {
8
9MockBluetoothAdapter::Observer::Observer() {}
10MockBluetoothAdapter::Observer::~Observer() {}
11
12MockBluetoothAdapter::MockBluetoothAdapter() {
13}
14
15MockBluetoothAdapter::~MockBluetoothAdapter() {}
16
17void MockBluetoothAdapter::AddDiscoverySession(
18    const base::Closure& callback,
19    const ErrorCallback& error_callback) {}
20
21void MockBluetoothAdapter::RemoveDiscoverySession(
22    const base::Closure& callback,
23    const ErrorCallback& error_callback) {}
24
25}  // namespace device
26