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

Unified Diff: chrome/browser/storage_monitor/storage_monitor_win.cc

Issue 15294020: StorageMonitor: Make StorageInfo a real class. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: address nits Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/storage_monitor/storage_monitor_win.cc
===================================================================
--- chrome/browser/storage_monitor/storage_monitor_win.cc (revision 201619)
+++ chrome/browser/storage_monitor/storage_monitor_win.cc (working copy)
@@ -86,7 +86,7 @@
size_t best_length = 0;
for (size_t i = 0; i < attached_devices.size(); i++) {
base::FilePath relative;
- if (base::FilePath(attached_devices[i].location).AppendRelativePath(
+ if (base::FilePath(attached_devices[i].location()).AppendRelativePath(
path, &relative)) {
// Note: the relative path is longer for shorter shared path between
// the path and the device mount point, so we want the shortest

Powered by Google App Engine
This is Rietveld 408576698