Index: chrome/browser/storage_monitor/storage_monitor_linux.cc |
diff --git a/chrome/browser/storage_monitor/storage_monitor_linux.cc b/chrome/browser/storage_monitor/storage_monitor_linux.cc |
index ca60edff3316a53641267f875e4cdd075614e55a..864c656dfbdaf741b612bd76fa79d0677756411b 100644 |
--- a/chrome/browser/storage_monitor/storage_monitor_linux.cc |
+++ b/chrome/browser/storage_monitor/storage_monitor_linux.cc |
@@ -290,15 +290,6 @@ bool StorageMonitorLinux::GetStorageInfoForPath( |
return true; |
} |
-uint64 StorageMonitorLinux::GetStorageSize(const std::string& location) const { |
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); |
- |
- MountMap::const_iterator mount_info = mount_info_map_.find( |
- base::FilePath(location)); |
- return (mount_info != mount_info_map_.end()) ? |
- mount_info->second.storage_info.total_size_in_bytes : 0; |
-} |
- |
void StorageMonitorLinux::SetGetDeviceInfoCallbackForTest( |
const GetDeviceInfoCallback& get_device_info_callback) { |
get_device_info_callback_ = get_device_info_callback; |