| 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 #ifndef CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ | 6 #define CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "base/task/cancelable_task_tracker.h" | 11 #include "base/task/cancelable_task_tracker.h" |
| 12 #include "chrome/browser/chrome_browser_main_linux.h" | 12 #include "chrome/browser/chrome_browser_main_linux.h" |
| 13 #include "chrome/browser/chromeos/external_metrics.h" | 13 #include "chrome/browser/chromeos/external_metrics.h" |
| 14 #include "chrome/browser/memory/memory_kills_monitor.h" | 14 #include "chrome/browser/memory/memory_kills_monitor.h" |
| 15 #include "chromeos/system/version_loader.h" | 15 #include "chromeos/system/version_loader.h" |
| 16 | 16 |
| 17 namespace lock_screen_apps { | |
| 18 class StateController; | |
| 19 } | |
| 20 | |
| 21 namespace session_manager { | 17 namespace session_manager { |
| 22 class SessionManager; | 18 class SessionManager; |
| 23 } | 19 } |
| 24 | 20 |
| 25 namespace arc { | 21 namespace arc { |
| 26 class ArcServiceLauncher; | 22 class ArcServiceLauncher; |
| 27 } | 23 } |
| 28 | 24 |
| 29 namespace chromeos { | 25 namespace chromeos { |
| 30 | 26 |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 | 91 |
| 96 scoped_refptr<chromeos::ExternalMetrics> external_metrics_; | 92 scoped_refptr<chromeos::ExternalMetrics> external_metrics_; |
| 97 | 93 |
| 98 std::unique_ptr<arc::ArcServiceLauncher> arc_service_launcher_; | 94 std::unique_ptr<arc::ArcServiceLauncher> arc_service_launcher_; |
| 99 | 95 |
| 100 std::unique_ptr<LowDiskNotification> low_disk_notification_; | 96 std::unique_ptr<LowDiskNotification> low_disk_notification_; |
| 101 std::unique_ptr<ArcKioskAppManager> arc_kiosk_app_manager_; | 97 std::unique_ptr<ArcKioskAppManager> arc_kiosk_app_manager_; |
| 102 | 98 |
| 103 std::unique_ptr<memory::MemoryKillsMonitor::Handle> memory_kills_monitor_; | 99 std::unique_ptr<memory::MemoryKillsMonitor::Handle> memory_kills_monitor_; |
| 104 | 100 |
| 105 std::unique_ptr<lock_screen_apps::StateController> | |
| 106 lock_screen_apps_state_controller_; | |
| 107 | |
| 108 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos); | 101 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos); |
| 109 }; | 102 }; |
| 110 | 103 |
| 111 } // namespace chromeos | 104 } // namespace chromeos |
| 112 | 105 |
| 113 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ | 106 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ |
| OLD | NEW |