Mark //testing/perf target testonly.
[chromium-blink-merge.git] / device / bluetooth / test / mock_bluetooth_gatt_notify_session.h
blob97c28e7bb6ef5f0bd33148b46c7c2a3e568cd3f8
1 // Copyright 2014 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_MOCK_BLUETOOTH_GATT_NOTIFY_SESSION_H_
6 #define DEVICE_BLUETOOTH_TEST_MOCK_BLUETOOTH_GATT_NOTIFY_SESSION_H_
8 #include <string>
10 #include "base/callback.h"
11 #include "device/bluetooth/bluetooth_gatt_notify_session.h"
12 #include "testing/gmock/include/gmock/gmock.h"
14 namespace device {
16 class MockBluetoothGattNotifySession : public BluetoothGattNotifySession {
17 public:
18 explicit MockBluetoothGattNotifySession(
19 const std::string& characteristic_identifier);
20 virtual ~MockBluetoothGattNotifySession();
22 MOCK_CONST_METHOD0(GetCharacteristicIdentifier, std::string());
23 MOCK_METHOD0(IsActive, bool());
24 MOCK_METHOD1(Stop, void(const base::Closure&));
26 private:
27 DISALLOW_COPY_AND_ASSIGN(MockBluetoothGattNotifySession);
30 } // namespace device
32 #endif // DEVICE_BLUETOOTH_TEST_MOCK_BLUETOOTH_GATT_NOTIFY_SESSION_H_