| Index: chrome/browser/chromeos/bluetooth/bluetooth_service_record_interface.h
|
| diff --git a/chrome/browser/chromeos/bluetooth/bluetooth_service_record_interface.h b/chrome/browser/chromeos/bluetooth/bluetooth_service_record_interface.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..c1a4f3dab3efe33008c7e4ce7e14c131357ba251
|
| --- /dev/null
|
| +++ b/chrome/browser/chromeos/bluetooth/bluetooth_service_record_interface.h
|
| @@ -0,0 +1,27 @@
|
| +// Copyright (c) 2012 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 CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_SERVICE_RECORD_INTERFACE_H_
|
| +#define CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_SERVICE_RECORD_INTERFACE_H_
|
| +
|
| +#include <string>
|
| +
|
| +namespace chromeos {
|
| +
|
| +// The BluetoothServiceRecordInterface represents an SDP service record.
|
| +class BluetoothServiceRecordInterface {
|
| + public:
|
| + virtual ~BluetoothServiceRecordInterface() {}
|
| +
|
| + // The human-readable name of this service.
|
| + virtual const std::string& name() const = 0;
|
| +
|
| + // The UUID of the service. This field may be empty if no UUID was specified
|
| + // in the service record.
|
| + virtual const std::string& uuid() const = 0;
|
| +};
|
| +
|
| +} // namespace chromeos
|
| +
|
| +#endif // CHROME_BROWSER_CHROMEOS_BLUETOOTH_BLUETOOTH_SERVICE_RECORD_INTERFACE_H_
|
|
|