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

Side by Side Diff: device/bluetooth/bluetooth_gatt_notify_session.h

Issue 1542163002: Switch to standard integer types in device/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: win Created 4 years, 12 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_GATT_NOTIFY_SESSION_H_ 5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_GATT_NOTIFY_SESSION_H_
6 #define DEVICE_BLUETOOTH_BLUETOOTH_GATT_NOTIFY_SESSION_H_ 6 #define DEVICE_BLUETOOTH_BLUETOOTH_GATT_NOTIFY_SESSION_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
11 #include "base/macros.h"
11 #include "device/bluetooth/bluetooth_export.h" 12 #include "device/bluetooth/bluetooth_export.h"
12 13
13 namespace device { 14 namespace device {
14 15
15 // A BluetoothGattNotifySession represents an active session for listening 16 // A BluetoothGattNotifySession represents an active session for listening
16 // to value updates from GATT characteristics that support notifications and/or 17 // to value updates from GATT characteristics that support notifications and/or
17 // indications. Instances are obtained by calling 18 // indications. Instances are obtained by calling
18 // BluetoothGattCharacteristic::StartNotifySession. 19 // BluetoothGattCharacteristic::StartNotifySession.
19 class DEVICE_BLUETOOTH_EXPORT BluetoothGattNotifySession { 20 class DEVICE_BLUETOOTH_EXPORT BluetoothGattNotifySession {
20 public: 21 public:
(...skipping 15 matching lines...) Expand all
36 protected: 37 protected:
37 BluetoothGattNotifySession(); 38 BluetoothGattNotifySession();
38 39
39 private: 40 private:
40 DISALLOW_COPY_AND_ASSIGN(BluetoothGattNotifySession); 41 DISALLOW_COPY_AND_ASSIGN(BluetoothGattNotifySession);
41 }; 42 };
42 43
43 } // namespace device 44 } // namespace device
44 45
45 #endif // DEVICE_BLUETOOTH_BLUETOOTH_GATT_NOTIFY_SESSION_H_ 46 #endif // DEVICE_BLUETOOTH_BLUETOOTH_GATT_NOTIFY_SESSION_H_
OLDNEW
« no previous file with comments | « device/bluetooth/bluetooth_gatt_descriptor.cc ('k') | device/bluetooth/bluetooth_gatt_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698