summaryrefslogtreecommitdiff
path: root/chromium/components/cryptauth/ble/remote_attribute.h
blob: 1bf1218dd4f5098681f192759e3706000e1bdd36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef COMPONENTS_CRYPTAUTH_BLE_REMOTE_ATTRIBUTE_H_
#define COMPONENTS_CRYPTAUTH_BLE_REMOTE_ATTRIBUTE_H_

#include <string>

#include "device/bluetooth/bluetooth_uuid.h"

namespace cryptauth {

// Represents an attribute in the peripheral (service or characteristic).
struct RemoteAttribute {
  device::BluetoothUUID uuid;
  std::string id;
};

}  // namespace cryptauth

#endif  // COMPONENTS_CRYPTAUTH_BLE_REMOTE_ATTRIBUTE_H_