| 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 #ifndef CHROMEOS_DBUS_AP_MANAGER_CLIENT_H_ | 4 #ifndef CHROMEOS_DBUS_AP_MANAGER_CLIENT_H_ |
| 5 #define CHROMEOS_DBUS_AP_MANAGER_CLIENT_H_ | 5 #define CHROMEOS_DBUS_AP_MANAGER_CLIENT_H_ |
| 6 | 6 |
| 7 #include <stdint.h> |
| 8 |
| 7 #include <map> | 9 #include <map> |
| 8 #include <string> | 10 #include <string> |
| 9 #include <vector> | 11 #include <vector> |
| 10 | 12 |
| 11 #include "base/callback.h" | 13 #include "base/callback.h" |
| 12 #include "base/macros.h" | 14 #include "base/macros.h" |
| 13 #include "base/values.h" | 15 #include "base/values.h" |
| 14 #include "chromeos/chromeos_export.h" | 16 #include "chromeos/chromeos_export.h" |
| 15 #include "chromeos/dbus/dbus_client.h" | 17 #include "chromeos/dbus/dbus_client.h" |
| 16 #include "chromeos/dbus/dbus_method_call_status.h" | 18 #include "chromeos/dbus/dbus_method_call_status.h" |
| (...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 // Create() should be used instead. | 279 // Create() should be used instead. |
| 278 ApManagerClient(); | 280 ApManagerClient(); |
| 279 | 281 |
| 280 private: | 282 private: |
| 281 DISALLOW_COPY_AND_ASSIGN(ApManagerClient); | 283 DISALLOW_COPY_AND_ASSIGN(ApManagerClient); |
| 282 }; | 284 }; |
| 283 | 285 |
| 284 } // namespace chromeos | 286 } // namespace chromeos |
| 285 | 287 |
| 286 #endif // CHROMEOS_DBUS_AP_MANAGER_CLIENT_H_ | 288 #endif // CHROMEOS_DBUS_AP_MANAGER_CLIENT_H_ |
| OLD | NEW |