summaryrefslogtreecommitdiffstats
path: root/device/bluetooth/bluetooth_service_record_win.h
blob: b9f03312ba8d23c24fccf202ce5e1d1fe11d2aab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright (c) 2013 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 DEVICE_BLUETOOTH_BLUETOOTH_SERVICE_RECORD_WIN_H_
#define DEVICE_BLUETOOTH_BLUETOOTH_SERVICE_RECORD_WIN_H_

#include <string>

#include "base/basictypes.h"
#include "device/bluetooth/bluetooth_init_win.h"
#include "device/bluetooth/bluetooth_service_record.h"

namespace device {

class BluetoothServiceRecordWin : public BluetoothServiceRecord {
 public:
  BluetoothServiceRecordWin(const std::string& name,
                            const std::string& address,
                            uint64 blob_size,
                            uint8* blob_data);

  BTH_ADDR bth_addr() const {
    return bth_addr_;
  }

 private:
  BTH_ADDR bth_addr_;

  DISALLOW_COPY_AND_ASSIGN(BluetoothServiceRecordWin);
};

}  // namespace device

#endif  // DEVICE_BLUETOOTH_BLUETOOTH_SERVICE_RECORD_WIN_H_