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

Unified Diff: chrome/browser/chromeos/arc/fileapi/arc_content_file_system_async_file_util.cc

Issue 2511973003: Use ArcFileSystemInstance to access files on ARC. (Closed)
Patch Set: Rebased to ToT. Created 4 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/chromeos/arc/fileapi/arc_content_file_system_async_file_util.cc
diff --git a/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_async_file_util.cc b/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_async_file_util.cc
index ef4c5fe4c4e5a8268ff3cf0e98dac07962a16f8e..1d9204ac608d2969ef6465c7bb62ba5c0c397e5d 100644
--- a/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_async_file_util.cc
+++ b/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_async_file_util.cc
@@ -6,7 +6,7 @@
#include "base/threading/thread_task_runner_handle.h"
#include "chrome/browser/chromeos/arc/fileapi/arc_content_file_system_url_util.h"
-#include "chrome/browser/chromeos/arc/fileapi/intent_helper_util.h"
+#include "chrome/browser/chromeos/arc/fileapi/arc_file_system_instance_util.h"
#include "content/public/browser/browser_thread.h"
#include "net/base/net_errors.h"
#include "storage/browser/blob/shareable_file_reference.h"
@@ -73,7 +73,7 @@ void ArcContentFileSystemAsyncFileUtil::GetFileInfo(
int fields,
const GetFileInfoCallback& callback) {
DCHECK_CURRENTLY_ON(content::BrowserThread::IO);
- intent_helper_util::GetFileSizeOnIOThread(
+ file_system_instance_util::GetFileSizeOnIOThread(
FileSystemUrlToArcUrl(url), base::Bind(&OnGetFileSize, callback));
}

Powered by Google App Engine
This is Rietveld 408576698