| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef DEVICE_BLUETOOTH_DBUS_BLUETOOTH_MEDIA_ENDPOINT_SERVICE_PROVIDER_H_ | 5 #ifndef DEVICE_BLUETOOTH_DBUS_BLUETOOTH_MEDIA_ENDPOINT_SERVICE_PROVIDER_H_ |
| 6 #define DEVICE_BLUETOOTH_DBUS_BLUETOOTH_MEDIA_ENDPOINT_SERVICE_PROVIDER_H_ | 6 #define DEVICE_BLUETOOTH_DBUS_BLUETOOTH_MEDIA_ENDPOINT_SERVICE_PROVIDER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/callback.h" | 14 #include "base/callback.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/memory/scoped_ptr.h" | |
| 17 #include "dbus/bus.h" | 16 #include "dbus/bus.h" |
| 18 #include "dbus/message.h" | 17 #include "dbus/message.h" |
| 19 #include "dbus/object_path.h" | 18 #include "dbus/object_path.h" |
| 20 #include "device/bluetooth/bluetooth_export.h" | 19 #include "device/bluetooth/bluetooth_export.h" |
| 21 | 20 |
| 22 namespace bluez { | 21 namespace bluez { |
| 23 | 22 |
| 24 // BluetoothMediaEndpointServiceProvider is used to provide a D-Bus object that | 23 // BluetoothMediaEndpointServiceProvider is used to provide a D-Bus object that |
| 25 // the Bluetooth daemon can commuicate with to serve as a media source/sink. | 24 // the Bluetooth daemon can commuicate with to serve as a media source/sink. |
| 26 // | 25 // |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 protected: | 128 protected: |
| 130 BluetoothMediaEndpointServiceProvider(); | 129 BluetoothMediaEndpointServiceProvider(); |
| 131 | 130 |
| 132 private: | 131 private: |
| 133 DISALLOW_COPY_AND_ASSIGN(BluetoothMediaEndpointServiceProvider); | 132 DISALLOW_COPY_AND_ASSIGN(BluetoothMediaEndpointServiceProvider); |
| 134 }; | 133 }; |
| 135 | 134 |
| 136 } // namespace bluez | 135 } // namespace bluez |
| 137 | 136 |
| 138 #endif // DEVICE_BLUETOOTH_DBUS_BLUETOOTH_MEDIA_ENDPOINT_SERVICE_PROVIDER_H_ | 137 #endif // DEVICE_BLUETOOTH_DBUS_BLUETOOTH_MEDIA_ENDPOINT_SERVICE_PROVIDER_H_ |
| OLD | NEW |