Roll src/third_party/WebKit 787a07c:716df21 (svn 201034:201036)
[chromium-blink-merge.git] / device / bluetooth / test / mock_bluetooth_advertisement.h
blobddaeef43dd3260890383d0e8c5d43eda1c15df70
1 // Copyright 2015 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.
5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_ADVERTISEMENT_CHROMEOS_H_
6 #define DEVICE_BLUETOOTH_BLUETOOTH_ADVERTISEMENT_CHROMEOS_H_
8 #include "base/macros.h"
9 #include "device/bluetooth/bluetooth_advertisement.h"
11 namespace device {
13 class MockBluetoothAdvertisement : public device::BluetoothAdvertisement {
14 public:
15 MockBluetoothAdvertisement();
17 // BluetoothAdvertisement overrides:
18 void Unregister(const SuccessCallback& success_callback,
19 const ErrorCallback& error_callback) override;
21 private:
22 ~MockBluetoothAdvertisement() override;
24 DISALLOW_COPY_AND_ASSIGN(MockBluetoothAdvertisement);
27 } // namespace chromeos
29 #endif // DEVICE_BLUETOOTH_BLUETOOTH_ADVERTISEMENT_CHROMEOS_H_