| 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 CHROMEOS_DBUS_DEBUG_DAEMON_CLIENT_H_ | 5 #ifndef CHROMEOS_DBUS_DEBUG_DAEMON_CLIENT_H_ |
| 6 #define CHROMEOS_DBUS_DEBUG_DAEMON_CLIENT_H_ | 6 #define CHROMEOS_DBUS_DEBUG_DAEMON_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/memory/ref_counted_memory.h" | 9 #include "base/memory/ref_counted_memory.h" |
| 10 #include "base/platform_file.h" | 10 #include "base/platform_file.h" |
| 11 #include "chromeos/chromeos_export.h" | 11 #include "chromeos/chromeos_export.h" |
| 12 #include "chromeos/dbus/dbus_client.h" | 12 #include "chromeos/dbus/dbus_client.h" |
| 13 #include "chromeos/dbus/dbus_client_implementation_type.h" | |
| 14 | 13 |
| 15 #include <map> | 14 #include <map> |
| 16 | 15 |
| 17 namespace metrics { | 16 namespace metrics { |
| 18 class PerfDataProto; | 17 class PerfDataProto; |
| 19 } | 18 } |
| 20 | 19 |
| 21 namespace chromeos { | 20 namespace chromeos { |
| 22 | 21 |
| 23 // DebugDaemonClient is used to communicate with the debug daemon. | 22 // DebugDaemonClient is used to communicate with the debug daemon. |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 // Create() should be used instead. | 148 // Create() should be used instead. |
| 150 DebugDaemonClient(); | 149 DebugDaemonClient(); |
| 151 | 150 |
| 152 private: | 151 private: |
| 153 DISALLOW_COPY_AND_ASSIGN(DebugDaemonClient); | 152 DISALLOW_COPY_AND_ASSIGN(DebugDaemonClient); |
| 154 }; | 153 }; |
| 155 | 154 |
| 156 } // namespace chromeos | 155 } // namespace chromeos |
| 157 | 156 |
| 158 #endif // CHROMEOS_DBUS_DEBUG_DAEMON_CLIENT_H_ | 157 #endif // CHROMEOS_DBUS_DEBUG_DAEMON_CLIENT_H_ |
| OLD | NEW |