#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);
};
}
#endif