Process Alt-Svc headers.
[chromium-blink-merge.git] / device / bluetooth / test / bluetooth_test_mac.h
blobb6d15385ad33b33aacab8999c882cf7467bc8529
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_TEST_BLUETOOTH_TEST_MAC_H_
6 #define DEVICE_BLUETOOTH_TEST_BLUETOOTH_TEST_MAC_H_
8 #include "base/test/test_simple_task_runner.h"
9 #include "device/bluetooth/test/bluetooth_test.h"
11 namespace device {
13 class BluetoothAdapterMac;
15 // Mac implementation of BluetoothTestBase.
16 class BluetoothTestMac : public BluetoothTestBase {
17 public:
18 BluetoothTestMac();
19 ~BluetoothTestMac() override;
21 // Test overrides:
22 void SetUp() override;
24 // BluetoothTestBase overrides:
25 void InitWithDefaultAdapter() override;
26 void InitWithoutDefaultAdapter() override;
27 void InitWithFakeAdapter() override;
29 protected:
30 BluetoothAdapterMac* adapter_mac_ = NULL;
33 // Defines common test fixture name. Use TEST_F(BluetoothTest, YourTestName).
34 typedef BluetoothTestMac BluetoothTest;
36 } // namespace device
38 #endif // DEVICE_BLUETOOTH_TEST_BLUETOOTH_TEST_MAC_H_