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

Unified Diff: chrome/browser/chromeos/bluetooth/bluetooth_service_record_interface.h

Issue 10899037: Refactoring bluetooth API code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added #include <string> into bluetooth_adapter_dbus.cc. Created 8 years, 3 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 side-by-side diff with in-line comments
Download patch
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_

Powered by Google App Engine
This is Rietveld 408576698