| 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 #include "components/arc/arc_bridge_bootstrap.h" | 5 #include "components/arc/arc_bridge_bootstrap.h" |
| 6 | 6 |
| 7 #include <fcntl.h> | 7 #include <fcntl.h> |
| 8 | 8 |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "base/files/file_util.h" | 12 #include "base/files/file_util.h" |
| 13 #include "base/location.h" | 13 #include "base/location.h" |
| 14 #include "base/macros.h" |
| 14 #include "base/task_runner_util.h" | 15 #include "base/task_runner_util.h" |
| 15 #include "base/thread_task_runner_handle.h" | 16 #include "base/thread_task_runner_handle.h" |
| 16 #include "base/threading/thread_checker.h" | 17 #include "base/threading/thread_checker.h" |
| 17 #include "base/threading/worker_pool.h" | 18 #include "base/threading/worker_pool.h" |
| 18 #include "chromeos/dbus/dbus_method_call_status.h" | 19 #include "chromeos/dbus/dbus_method_call_status.h" |
| 19 #include "chromeos/dbus/dbus_thread_manager.h" | 20 #include "chromeos/dbus/dbus_thread_manager.h" |
| 20 #include "chromeos/dbus/session_manager_client.h" | 21 #include "chromeos/dbus/session_manager_client.h" |
| 21 #include "ipc/unix_domain_socket_util.h" | 22 #include "ipc/unix_domain_socket_util.h" |
| 22 #include "mojo/public/cpp/bindings/binding.h" | 23 #include "mojo/public/cpp/bindings/binding.h" |
| 23 #include "third_party/mojo/src/mojo/edk/embedder/embedder.h" | 24 #include "third_party/mojo/src/mojo/edk/embedder/embedder.h" |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 | 280 |
| 280 ArcBridgeBootstrap::ArcBridgeBootstrap() {} | 281 ArcBridgeBootstrap::ArcBridgeBootstrap() {} |
| 281 ArcBridgeBootstrap::~ArcBridgeBootstrap() {} | 282 ArcBridgeBootstrap::~ArcBridgeBootstrap() {} |
| 282 | 283 |
| 283 // static | 284 // static |
| 284 scoped_ptr<ArcBridgeBootstrap> ArcBridgeBootstrap::Create() { | 285 scoped_ptr<ArcBridgeBootstrap> ArcBridgeBootstrap::Create() { |
| 285 return make_scoped_ptr(new ArcBridgeBootstrapImpl()); | 286 return make_scoped_ptr(new ArcBridgeBootstrapImpl()); |
| 286 } | 287 } |
| 287 | 288 |
| 288 } // namespace arc | 289 } // namespace arc |
| OLD | NEW |