Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Side by Side Diff: chrome/browser/chromeos/chrome_browser_main_chromeos.h

Issue 2848813002: Introduce ash mojo interface for lock screen action handlers (Closed)
Patch Set: add ASH_EXPORTS Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
17 namespace session_manager { 21 namespace session_manager {
18 class SessionManager; 22 class SessionManager;
19 } 23 }
20 24
21 namespace arc { 25 namespace arc {
22 class ArcServiceLauncher; 26 class ArcServiceLauncher;
23 } 27 }
24 28
25 namespace chromeos { 29 namespace chromeos {
26 30
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 95
92 scoped_refptr<chromeos::ExternalMetrics> external_metrics_; 96 scoped_refptr<chromeos::ExternalMetrics> external_metrics_;
93 97
94 std::unique_ptr<arc::ArcServiceLauncher> arc_service_launcher_; 98 std::unique_ptr<arc::ArcServiceLauncher> arc_service_launcher_;
95 99
96 std::unique_ptr<LowDiskNotification> low_disk_notification_; 100 std::unique_ptr<LowDiskNotification> low_disk_notification_;
97 std::unique_ptr<ArcKioskAppManager> arc_kiosk_app_manager_; 101 std::unique_ptr<ArcKioskAppManager> arc_kiosk_app_manager_;
98 102
99 std::unique_ptr<memory::MemoryKillsMonitor::Handle> memory_kills_monitor_; 103 std::unique_ptr<memory::MemoryKillsMonitor::Handle> memory_kills_monitor_;
100 104
105 std::unique_ptr<lock_screen_apps::StateController>
106 lock_screen_apps_state_controller_;
107
101 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos); 108 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos);
102 }; 109 };
103 110
104 } // namespace chromeos 111 } // namespace chromeos
105 112
106 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ 113 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/BUILD.gn ('k') | chrome/browser/chromeos/chrome_browser_main_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698