| 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 #include "chromeos/dbus/debug_daemon_client.h" | 5 #include "chromeos/dbus/debug_daemon_client.h" |
| 6 | 6 |
| 7 #include <fcntl.h> | 7 #include <fcntl.h> |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 #include <unistd.h> | 10 #include <unistd.h> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/bind.h" | 14 #include "base/bind.h" |
| 15 #include "base/bind_helpers.h" | 15 #include "base/bind_helpers.h" |
| 16 #include "base/files/file_path.h" | 16 #include "base/files/file_path.h" |
| 17 #include "base/json/json_string_value_serializer.h" | 17 #include "base/json/json_string_value_serializer.h" |
| 18 #include "base/location.h" | 18 #include "base/location.h" |
| 19 #include "base/macros.h" | 19 #include "base/macros.h" |
| 20 #include "base/message_loop/message_loop.h" | 20 #include "base/message_loop/message_loop.h" |
| 21 #include "base/posix/eintr_wrapper.h" | 21 #include "base/posix/eintr_wrapper.h" |
| 22 #include "base/strings/string_util.h" | 22 #include "base/strings/string_util.h" |
| 23 #include "base/task_runner_util.h" | 23 #include "base/task_runner_util.h" |
| 24 #include "base/thread_task_runner_handle.h" | 24 #include "base/threading/thread_task_runner_handle.h" |
| 25 #include "base/threading/worker_pool.h" | 25 #include "base/threading/worker_pool.h" |
| 26 #include "chromeos/dbus/pipe_reader.h" | 26 #include "chromeos/dbus/pipe_reader.h" |
| 27 #include "dbus/bus.h" | 27 #include "dbus/bus.h" |
| 28 #include "dbus/message.h" | 28 #include "dbus/message.h" |
| 29 #include "dbus/object_path.h" | 29 #include "dbus/object_path.h" |
| 30 #include "dbus/object_proxy.h" | 30 #include "dbus/object_proxy.h" |
| 31 | 31 |
| 32 namespace chromeos { | 32 namespace chromeos { |
| 33 | 33 |
| 34 namespace { | 34 namespace { |
| (...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 740 DebugDaemonClient::EmptyStopAgentTracingCallback() { | 740 DebugDaemonClient::EmptyStopAgentTracingCallback() { |
| 741 return base::Bind(&EmptyStopAgentTracingCallbackBody); | 741 return base::Bind(&EmptyStopAgentTracingCallbackBody); |
| 742 } | 742 } |
| 743 | 743 |
| 744 // static | 744 // static |
| 745 DebugDaemonClient* DebugDaemonClient::Create() { | 745 DebugDaemonClient* DebugDaemonClient::Create() { |
| 746 return new DebugDaemonClientImpl(); | 746 return new DebugDaemonClientImpl(); |
| 747 } | 747 } |
| 748 | 748 |
| 749 } // namespace chromeos | 749 } // namespace chromeos |
| OLD | NEW |