Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 CHROME_BROWSER_CHROMEOS_ARC_ARC_SERVICE_LAUNCHER_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_ARC_ARC_SERVICE_LAUNCHER_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_ARC_ARC_SERVICE_LAUNCHER_H_ | 6 #define CHROME_BROWSER_CHROMEOS_ARC_ARC_SERVICE_LAUNCHER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "components/arc/arc_service_manager.h" | 11 #include "components/arc/arc_service_manager.h" |
| 12 | 12 |
| 13 namespace arc { | 13 namespace arc { |
| 14 | 14 |
| 15 class ArcSessionManager; | |
|
Luis Héctor Chávez
2016/11/16 17:13:34
Seems like we don't need this in this file. Is it
hidehiko
2016/11/16 19:52:05
Oops. This was just my mistake. Removed.
| |
| 16 | |
| 15 // Detects ARC availability and launches ARC bridge service. | 17 // Detects ARC availability and launches ARC bridge service. |
| 16 class ArcServiceLauncher { | 18 class ArcServiceLauncher { |
| 17 public: | 19 public: |
| 18 ArcServiceLauncher(); | 20 ArcServiceLauncher(); |
| 19 ~ArcServiceLauncher(); | 21 ~ArcServiceLauncher(); |
| 20 | 22 |
| 21 void Initialize(); | 23 void Initialize(); |
| 22 void Shutdown(); | 24 void Shutdown(); |
| 23 | 25 |
| 24 private: | 26 private: |
| 25 std::unique_ptr<ArcServiceManager> arc_service_manager_; | 27 std::unique_ptr<ArcServiceManager> arc_service_manager_; |
| 26 | 28 |
| 27 DISALLOW_COPY_AND_ASSIGN(ArcServiceLauncher); | 29 DISALLOW_COPY_AND_ASSIGN(ArcServiceLauncher); |
| 28 }; | 30 }; |
| 29 | 31 |
| 30 } // namespace arc | 32 } // namespace arc |
| 31 | 33 |
| 32 #endif // CHROME_BROWSER_CHROMEOS_ARC_ARC_SERVICE_LAUNCHER_H_ | 34 #endif // CHROME_BROWSER_CHROMEOS_ARC_ARC_SERVICE_LAUNCHER_H_ |
| OLD | NEW |