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

Unified Diff: chrome/browser/chromeos/ui/low_disk_notification.h

Issue 2082363004: Show notifications on low disk space. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@low-disk-strings
Patch Set: Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/ui/low_disk_notification.h
diff --git a/chrome/browser/chromeos/ui/low_disk_notification.h b/chrome/browser/chromeos/ui/low_disk_notification.h
new file mode 100644
index 0000000000000000000000000000000000000000..ff45c3dc1bad948179056f80fc2271ab2cb29b35
--- /dev/null
+++ b/chrome/browser/chromeos/ui/low_disk_notification.h
@@ -0,0 +1,47 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_CHROMEOS_UI_LOW_DISK_NOTIFICATION_H_
+#define CHROME_BROWSER_CHROMEOS_UI_LOW_DISK_NOTIFICATION_H_
+
+#include <stdint.h>
+
+#include <memory>
+
+#include "base/macros.h"
+#include "base/time/time.h"
+
+namespace message_center {
+class Notification;
+}
+
+namespace chromeos {
+
+class CryptohomeClient;
+
+class LowDiskNotification {
+ public:
+ explicit LowDiskNotification(CryptohomeClient* cryptohome_client);
+ ~LowDiskNotification();
+
+ void OnLowDiskSpace(uint64_t free_disk_bytes);
+
+ private:
+ enum Severity { NONE = -1, MEDIUM = 0, HIGH = 1 };
+
+ std::unique_ptr<message_center::Notification> CreateNotification(
+ Severity severity);
+ Severity GetSeverity(uint64_t free_disk_bytes);
+
+ base::Time last_notification_time_;
+ Severity last_notification_severity_;
+
+ CryptohomeClient* cryptohome_client_;
+
+ DISALLOW_COPY_AND_ASSIGN(LowDiskNotification);
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_CHROMEOS_UI_LOW_DISK_NOTIFICATION_H_

Powered by Google App Engine
This is Rietveld 408576698