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

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

Issue 2082363004: Show notifications on low disk space. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@low-disk-strings
Patch Set: Switch to thread checker instead of checking for UI thread explicitly Created 4 years, 5 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/chrome_browser_main_chromeos.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "chromeos/system/version_loader.h" 14 #include "chromeos/system/version_loader.h"
15 15
16 namespace session_manager { 16 namespace session_manager {
17 class SessionManager; 17 class SessionManager;
18 } 18 }
19 19
20 namespace arc { 20 namespace arc {
21 class ArcServiceLauncher; 21 class ArcServiceLauncher;
22 } 22 }
23 23
24 namespace chromeos { 24 namespace chromeos {
25 25
26 class DataPromoNotification; 26 class DataPromoNotification;
27 class EventRewriter; 27 class EventRewriter;
28 class EventRewriterController; 28 class EventRewriterController;
29 class IdleActionWarningObserver; 29 class IdleActionWarningObserver;
30 class LowDiskNotification;
30 class MagnificationManager; 31 class MagnificationManager;
31 class PeripheralBatteryObserver; 32 class PeripheralBatteryObserver;
32 class PowerButtonObserver; 33 class PowerButtonObserver;
33 class PowerPrefs; 34 class PowerPrefs;
34 class RendererFreezer; 35 class RendererFreezer;
35 class SessionManagerObserver; 36 class SessionManagerObserver;
36 class SwapMetrics; 37 class SwapMetrics;
37 class WakeOnWifiManager; 38 class WakeOnWifiManager;
38 39
39 namespace default_app_order { 40 namespace default_app_order {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 std::unique_ptr<internal::DBusServices> dbus_services_; 79 std::unique_ptr<internal::DBusServices> dbus_services_;
79 80
80 std::unique_ptr<session_manager::SessionManager> session_manager_; 81 std::unique_ptr<session_manager::SessionManager> session_manager_;
81 82
82 std::unique_ptr<EventRewriterController> keyboard_event_rewriters_; 83 std::unique_ptr<EventRewriterController> keyboard_event_rewriters_;
83 84
84 scoped_refptr<chromeos::ExternalMetrics> external_metrics_; 85 scoped_refptr<chromeos::ExternalMetrics> external_metrics_;
85 86
86 std::unique_ptr<arc::ArcServiceLauncher> arc_service_launcher_; 87 std::unique_ptr<arc::ArcServiceLauncher> arc_service_launcher_;
87 88
89 std::unique_ptr<LowDiskNotification> low_disk_notification_;
90
88 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos); 91 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainPartsChromeos);
89 }; 92 };
90 93
91 } // namespace chromeos 94 } // namespace chromeos
92 95
93 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_ 96 #endif // CHROME_BROWSER_CHROMEOS_CHROME_BROWSER_MAIN_CHROMEOS_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/chrome_browser_main_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698