OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_BROWSER_CHROMEOS_DBUS_BLUETOOTH_DEVICE_CLIENT_H_ | 5 #ifndef CHROMEOS_DBUS_BLUETOOTH_DEVICE_CLIENT_H_ |
6 #define CHROME_BROWSER_CHROMEOS_DBUS_BLUETOOTH_DEVICE_CLIENT_H_ | 6 #define CHROMEOS_DBUS_BLUETOOTH_DEVICE_CLIENT_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/callback.h" | 13 #include "base/callback.h" |
14 #include "base/observer_list.h" | 14 #include "base/observer_list.h" |
15 #include "base/values.h" | 15 #include "base/values.h" |
16 #include "chrome/browser/chromeos/dbus/bluetooth_property.h" | 16 #include "chromeos/dbus/bluetooth_property.h" |
17 #include "dbus/object_path.h" | 17 #include "dbus/object_path.h" |
18 | 18 |
19 namespace dbus { | 19 namespace dbus { |
20 class Bus; | 20 class Bus; |
21 } // namespace dbus | 21 } // namespace dbus |
22 | 22 |
23 namespace chromeos { | 23 namespace chromeos { |
24 | 24 |
25 class BluetoothAdapterClient; | 25 class BluetoothAdapterClient; |
26 | 26 |
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 | 199 |
200 protected: | 200 protected: |
201 BluetoothDeviceClient(); | 201 BluetoothDeviceClient(); |
202 | 202 |
203 private: | 203 private: |
204 DISALLOW_COPY_AND_ASSIGN(BluetoothDeviceClient); | 204 DISALLOW_COPY_AND_ASSIGN(BluetoothDeviceClient); |
205 }; | 205 }; |
206 | 206 |
207 } // namespace chromeos | 207 } // namespace chromeos |
208 | 208 |
209 #endif // CHROME_BROWSER_CHROMEOS_DBUS_BLUETOOTH_DEVICE_CLIENT_H_ | 209 #endif // CHROMEOS_DBUS_BLUETOOTH_DEVICE_CLIENT_H_ |
OLD | NEW |