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/threading/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" | |
14 | 13 |
15 namespace arc { | 14 namespace arc { |
16 | 15 |
17 namespace { | 16 namespace { |
18 | 17 |
19 // Weak pointer. This class is owned by ArcServiceManager. | 18 // Weak pointer. This class is owned by ArcServiceManager. |
20 ArcBridgeService* g_arc_bridge_service = nullptr; | 19 ArcBridgeService* g_arc_bridge_service = nullptr; |
21 | 20 |
22 } // namespace | 21 } // namespace |
23 | 22 |
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
625 CloseObbMounterChannel(); | 624 CloseObbMounterChannel(); |
626 ClosePolicyChannel(); | 625 ClosePolicyChannel(); |
627 ClosePowerChannel(); | 626 ClosePowerChannel(); |
628 CloseProcessChannel(); | 627 CloseProcessChannel(); |
629 CloseStorageManagerChannel(); | 628 CloseStorageManagerChannel(); |
630 CloseVideoChannel(); | 629 CloseVideoChannel(); |
631 CloseWindowManagerChannel(); | 630 CloseWindowManagerChannel(); |
632 } | 631 } |
633 | 632 |
634 } // namespace arc | 633 } // namespace arc |
OLD | NEW |