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

Unified Diff: webkit/fileapi/isolated_mount_point_provider.cc

Issue 10447083: Rename webkit_blob::FileReader to FileStreamReader. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge master branch. Created 8 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
« no previous file with comments | « webkit/fileapi/isolated_mount_point_provider.h ('k') | webkit/fileapi/sandbox_file_writer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/isolated_mount_point_provider.cc
diff --git a/webkit/fileapi/isolated_mount_point_provider.cc b/webkit/fileapi/isolated_mount_point_provider.cc
index 8dfbcc5ac4180c9a5e09f487303b96838eba539d..fe5909f837095ffcde047f52ac47c7fa7067dd19 100644
--- a/webkit/fileapi/isolated_mount_point_provider.cc
+++ b/webkit/fileapi/isolated_mount_point_provider.cc
@@ -12,10 +12,10 @@
#include "base/message_loop_proxy.h"
#include "base/sequenced_task_runner.h"
#include "googleurl/src/gurl.h"
-#include "webkit/blob/local_file_reader.h"
+#include "webkit/blob/local_file_stream_reader.h"
#include "webkit/fileapi/file_system_callback_dispatcher.h"
#include "webkit/fileapi/file_system_context.h"
-#include "webkit/fileapi/file_system_file_reader.h"
+#include "webkit/fileapi/file_system_file_stream_reader.h"
#include "webkit/fileapi/file_system_operation.h"
#include "webkit/fileapi/file_system_types.h"
#include "webkit/fileapi/file_system_util.h"
@@ -102,12 +102,13 @@ IsolatedMountPointProvider::CreateFileSystemOperation(
return new FileSystemOperation(context);
}
-webkit_blob::FileReader* IsolatedMountPointProvider::CreateFileReader(
+webkit_blob::FileStreamReader*
+IsolatedMountPointProvider::CreateFileStreamReader(
const GURL& url,
int64 offset,
FileSystemContext* context) const {
FilePath path = GetPathFromURL(url);
- return path.empty() ? NULL : new webkit_blob::LocalFileReader(
+ return path.empty() ? NULL : new webkit_blob::LocalFileStreamReader(
context->file_task_runner(), path, offset, base::Time());
}
« no previous file with comments | « webkit/fileapi/isolated_mount_point_provider.h ('k') | webkit/fileapi/sandbox_file_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698