Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(288)

Side by Side Diff: device/bluetooth/test/mock_bluetooth_advertisement.h

Issue 1132173002: Implement the advertising functions for the BLE API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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.
4
5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_ADVERTISEMENT_CHROMEOS_H_
6 #define DEVICE_BLUETOOTH_BLUETOOTH_ADVERTISEMENT_CHROMEOS_H_
7
8 #include "base/macros.h"
9 #include "device/bluetooth/bluetooth_advertisement.h"
10
11 namespace device {
12
13 class MockBluetoothAdvertisement : public device::BluetoothAdvertisement {
14 public:
15 MockBluetoothAdvertisement();
16
17 // BluetoothAdvertisement overrides:
18 void Unregister(const SuccessCallback& success_callback,
19 const ErrorCallback& error_callback) override;
20
21 private:
22 ~MockBluetoothAdvertisement() override;
23
24 DISALLOW_COPY_AND_ASSIGN(MockBluetoothAdvertisement);
25 };
26
27 } // namespace chromeos
28
29 #endif // DEVICE_BLUETOOTH_BLUETOOTH_ADVERTISEMENT_CHROMEOS_H_
OLDNEW
« no previous file with comments | « device/bluetooth/test/mock_bluetooth_adapter.cc ('k') | device/bluetooth/test/mock_bluetooth_advertisement.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698