OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_BLUETOOTH_AUDIO_SINK_BLUEZ_H_ | 5 #ifndef DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_AUDIO_SINK_BLUEZ_H_ |
6 #define DEVICE_BLUETOOTH_BLUETOOTH_AUDIO_SINK_BLUEZ_H_ | 6 #define DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_AUDIO_SINK_BLUEZ_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/files/file.h" | 14 #include "base/files/file.h" |
15 #include "base/macros.h" | 15 #include "base/macros.h" |
16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 | 214 |
215 // Note: This should remain the last member so it'll be destroyed and | 215 // Note: This should remain the last member so it'll be destroyed and |
216 // invalidate its weak pointers before any other members are destroyed. | 216 // invalidate its weak pointers before any other members are destroyed. |
217 base::WeakPtrFactory<BluetoothAudioSinkBlueZ> weak_ptr_factory_; | 217 base::WeakPtrFactory<BluetoothAudioSinkBlueZ> weak_ptr_factory_; |
218 | 218 |
219 DISALLOW_COPY_AND_ASSIGN(BluetoothAudioSinkBlueZ); | 219 DISALLOW_COPY_AND_ASSIGN(BluetoothAudioSinkBlueZ); |
220 }; | 220 }; |
221 | 221 |
222 } // namespace bluez | 222 } // namespace bluez |
223 | 223 |
224 #endif // DEVICE_BLUETOOTH_BLUETOOTH_AUDIO_SINK_BLUEZ_H_ | 224 #endif // DEVICE_BLUETOOTH_BLUEZ_BLUETOOTH_AUDIO_SINK_BLUEZ_H_ |
OLD | NEW |