| Index: chrome/browser/chromeos/arc/fileapi/arc_content_file_system_file_stream_reader.cc
|
| diff --git a/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_file_stream_reader.cc b/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_file_stream_reader.cc
|
| index a1302df9667a533f420f2e0ab9d20ebd5a7c4597..426b51307bc6c83309858cc18d5dd8a5cfc5a734 100644
|
| --- a/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_file_stream_reader.cc
|
| +++ b/chrome/browser/chromeos/arc/fileapi/arc_content_file_system_file_stream_reader.cc
|
| @@ -9,7 +9,7 @@
|
|
|
| #include "base/files/file.h"
|
| #include "base/threading/thread_restrictions.h"
|
| -#include "chrome/browser/chromeos/arc/fileapi/arc_file_system_instance_util.h"
|
| +#include "chrome/browser/chromeos/arc/fileapi/arc_file_system_operation_runner_util.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "mojo/edk/embedder/embedder.h"
|
| #include "net/base/io_buffer.h"
|
| @@ -62,7 +62,7 @@ int ArcContentFileSystemFileStreamReader::Read(
|
| ReadInternal(buffer, buffer_length, callback);
|
| return net::ERR_IO_PENDING;
|
| }
|
| - file_system_instance_util::OpenFileToReadOnIOThread(
|
| + file_system_operation_runner_util::OpenFileToReadOnIOThread(
|
| arc_url_,
|
| base::Bind(&ArcContentFileSystemFileStreamReader::OnOpenFile,
|
| weak_ptr_factory_.GetWeakPtr(), make_scoped_refptr(buffer),
|
| @@ -73,7 +73,7 @@ int ArcContentFileSystemFileStreamReader::Read(
|
| int64_t ArcContentFileSystemFileStreamReader::GetLength(
|
| const net::Int64CompletionCallback& callback) {
|
| DCHECK_CURRENTLY_ON(content::BrowserThread::IO);
|
| - file_system_instance_util::GetFileSizeOnIOThread(
|
| + file_system_operation_runner_util::GetFileSizeOnIOThread(
|
| arc_url_, base::Bind(&ArcContentFileSystemFileStreamReader::OnGetFileSize,
|
| weak_ptr_factory_.GetWeakPtr(), callback));
|
| return net::ERR_IO_PENDING;
|
|
|