| 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_service.h" | 5 #include "components/arc/arc_bridge_service.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/sequenced_task_runner.h" | 10 #include "base/sequenced_task_runner.h" |
| 11 #include "base/thread_task_runner_handle.h" | 11 #include "base/threading/thread_task_runner_handle.h" |
| 12 #include "chromeos/chromeos_switches.h" | 12 #include "chromeos/chromeos_switches.h" |
| 13 #include "components/arc/arc_bridge_service_impl.h" | 13 #include "components/arc/arc_bridge_service_impl.h" |
| 14 | 14 |
| 15 namespace arc { | 15 namespace arc { |
| 16 | 16 |
| 17 namespace { | 17 namespace { |
| 18 | 18 |
| 19 // Weak pointer. This class is owned by ArcServiceManager. | 19 // Weak pointer. This class is owned by ArcServiceManager. |
| 20 ArcBridgeService* g_arc_bridge_service = nullptr; | 20 ArcBridgeService* g_arc_bridge_service = nullptr; |
| 21 | 21 |
| (...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 529 CloseNetChannel(); | 529 CloseNetChannel(); |
| 530 CloseNotificationsChannel(); | 530 CloseNotificationsChannel(); |
| 531 ClosePolicyChannel(); | 531 ClosePolicyChannel(); |
| 532 ClosePowerChannel(); | 532 ClosePowerChannel(); |
| 533 CloseProcessChannel(); | 533 CloseProcessChannel(); |
| 534 CloseVideoChannel(); | 534 CloseVideoChannel(); |
| 535 CloseWindowManagerChannel(); | 535 CloseWindowManagerChannel(); |
| 536 } | 536 } |
| 537 | 537 |
| 538 } // namespace arc | 538 } // namespace arc |
| OLD | NEW |