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

Unified Diff: chrome/browser/system_monitor/removable_device_notifications_chromeos.h

Issue 11366144: [Media Gallery][ChromeOS] Improve device media gallery names. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: '' Created 8 years, 1 month 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/system_monitor/removable_device_notifications_chromeos.h
diff --git a/chrome/browser/system_monitor/removable_device_notifications_chromeos.h b/chrome/browser/system_monitor/removable_device_notifications_chromeos.h
index a767e8557441c152b02f05c7e4570256a34c4570..15082e6a2ad71bc6a73549c989e914bda0115df1 100644
--- a/chrome/browser/system_monitor/removable_device_notifications_chromeos.h
+++ b/chrome/browser/system_monitor/removable_device_notifications_chromeos.h
@@ -60,12 +60,23 @@ class RemovableDeviceNotificationsCros
const FilePath& path,
base::SystemMonitor::RemovableStorageInfo* device_info) const;
+ // Returns the storage size information of the device present at |location|.
+ // If the requested information is unavailable, returns an empty string.
+ string16 GetStorageSizeInfo(const std::string& location);
+
private:
+ struct StorageObjectInfo {
+ // Basic details {storage device name, location and identifier}.
+ base::SystemMonitor::RemovableStorageInfo storage_info;
+
+ // Device storage size, e.g "4GB", "15MB".
+ string16 storage_size_info;
+ };
+
friend class base::RefCountedThreadSafe<RemovableDeviceNotificationsCros>;
// Mapping of mount path to removable mass storage info.
- typedef std::map<std::string, base::SystemMonitor::RemovableStorageInfo>
- MountMap;
+ typedef std::map<std::string, StorageObjectInfo> MountMap;
// Private to avoid code deleting the object.
virtual ~RemovableDeviceNotificationsCros();

Powered by Google App Engine
This is Rietveld 408576698