| 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_ADAPTER_PROFILE_CHROMEOS_H_ | 5 #ifndef DEVICE_BLUETOOTH_BLUETOOTH_ADAPTER_PROFILE_CHROMEOS_H_ |
| 6 #define DEVICE_BLUETOOTH_BLUETOOTH_ADAPTER_PROFILE_CHROMEOS_H_ | 6 #define DEVICE_BLUETOOTH_BLUETOOTH_ADAPTER_PROFILE_CHROMEOS_H_ |
| 7 | 7 |
| 8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
| 9 #include "chromeos/dbus/bluetooth_profile_manager_client.h" | 9 #include "chromeos/dbus/bluetooth_profile_manager_client.h" |
| 10 #include "chromeos/dbus/bluetooth_profile_service_provider.h" | 10 #include "chromeos/dbus/bluetooth_profile_service_provider.h" |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 // Note: This should remain the last member so it'll be destroyed and | 97 // Note: This should remain the last member so it'll be destroyed and |
| 98 // invalidate its weak pointers before any other members are destroyed. | 98 // invalidate its weak pointers before any other members are destroyed. |
| 99 base::WeakPtrFactory<BluetoothAdapterProfileChromeOS> weak_ptr_factory_; | 99 base::WeakPtrFactory<BluetoothAdapterProfileChromeOS> weak_ptr_factory_; |
| 100 | 100 |
| 101 DISALLOW_COPY_AND_ASSIGN(BluetoothAdapterProfileChromeOS); | 101 DISALLOW_COPY_AND_ASSIGN(BluetoothAdapterProfileChromeOS); |
| 102 }; | 102 }; |
| 103 | 103 |
| 104 } // namespace chromeos | 104 } // namespace chromeos |
| 105 | 105 |
| 106 #endif | 106 #endif |
| 107 |
| OLD | NEW |