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

Unified Diff: webkit/fileapi/file_system_context.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/file_system_context.h ('k') | webkit/fileapi/file_system_file_reader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/file_system_context.cc
diff --git a/webkit/fileapi/file_system_context.cc b/webkit/fileapi/file_system_context.cc
index 3127af4828f35b9fcf1b5d34966303256125523d..3aeb75e7870ee64875809ce8481ad15efaefb420 100644
--- a/webkit/fileapi/file_system_context.cc
+++ b/webkit/fileapi/file_system_context.cc
@@ -180,7 +180,7 @@ FileSystemOperationInterface* FileSystemContext::CreateFileSystemOperation(
origin_url, file_system_type, file_path, this);
}
-webkit_blob::FileReader* FileSystemContext::CreateFileReader(
+webkit_blob::FileStreamReader* FileSystemContext::CreateFileStreamReader(
const GURL& url,
int64 offset) {
GURL origin_url;
@@ -192,7 +192,7 @@ webkit_blob::FileReader* FileSystemContext::CreateFileReader(
GetMountPointProvider(file_system_type);
if (!mount_point_provider)
return NULL;
- return mount_point_provider->CreateFileReader(url, offset, this);
+ return mount_point_provider->CreateFileStreamReader(url, offset, this);
}
void FileSystemContext::RegisterMountPointProvider(
« no previous file with comments | « webkit/fileapi/file_system_context.h ('k') | webkit/fileapi/file_system_file_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698