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

Unified Diff: chrome/browser/media_galleries/linux/mtp_device_task_helper.cc

Issue 492873002: Collapse fileapi, webkit_blob, webkit_database, quota, and webkit_common namespaces into single sto… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix chromeos build Created 6 years, 4 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/media_galleries/linux/mtp_device_task_helper.cc
diff --git a/chrome/browser/media_galleries/linux/mtp_device_task_helper.cc b/chrome/browser/media_galleries/linux/mtp_device_task_helper.cc
index 0282c8a0e59036e6a34428c1c550b6d75d8b796a..b2e27e41716f3f3b295c5b8a4cb4c41ce5866781 100644
--- a/chrome/browser/media_galleries/linux/mtp_device_task_helper.cc
+++ b/chrome/browser/media_galleries/linux/mtp_device_task_helper.cc
@@ -182,12 +182,12 @@ void MTPDeviceTaskHelper::OnDidReadDirectory(
if (error)
return HandleDeviceError(error_callback, base::File::FILE_ERROR_FAILED);
- fileapi::AsyncFileUtil::EntryList entries;
+ storage::AsyncFileUtil::EntryList entries;
base::FilePath current;
MTPDeviceObjectEnumerator file_enum(file_entries);
while (!(current = file_enum.Next()).empty()) {
- fileapi::DirectoryEntry entry;
- entry.name = fileapi::VirtualPath::BaseName(current).value();
+ storage::DirectoryEntry entry;
+ entry.name = storage::VirtualPath::BaseName(current).value();
uint32 file_id = 0;
bool ret = file_enum.GetEntryId(&file_id);
DCHECK(ret);

Powered by Google App Engine
This is Rietveld 408576698