| Index: chrome/browser/chromeos/cros/mount_library.cc
|
| diff --git a/chrome/browser/chromeos/cros/mount_library.cc b/chrome/browser/chromeos/cros/mount_library.cc
|
| index c95b8eef32f97a691cb2462ac649bb09ea975edc..c195cd1bca1174caba54de5dd386461b82200033 100644
|
| --- a/chrome/browser/chromeos/cros/mount_library.cc
|
| +++ b/chrome/browser/chromeos/cros/mount_library.cc
|
| @@ -638,14 +638,12 @@ class MountLibraryImpl : public MountLibrary {
|
| std::set<std::string> current_device_set;
|
| if (error == MOUNT_METHOD_ERROR_NONE && devices && devices_len) {
|
| // Initiate properties fetch for all removable disks,
|
| - bool found_disk = false;
|
| for (size_t i = 0; i < devices_len; i++) {
|
| if (!devices[i]) {
|
| NOTREACHED();
|
| continue;
|
| }
|
| current_device_set.insert(std::string(devices[i]));
|
| - found_disk = true;
|
| // Initiate disk property retrieval for each relevant device path.
|
| libcros_proxy_->CallGetDiskProperties(devices[i],
|
| &GetDiskPropertiesCallback, this);
|
|
|