summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi/file_system_mount_point_provider.h
diff options
context:
space:
mode:
authorkinaba@chromium.org <kinaba@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-31 03:15:46 +0000
committerkinaba@chromium.org <kinaba@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-31 03:15:46 +0000
commitc4ca3b454d7a68dd8841d0b2f03f0f81c3cc2a7d (patch)
treec1bbbec351a1e14fd11a4f03e3c144f699dc90ad /webkit/fileapi/file_system_mount_point_provider.h
parentdb6d8b31654e460ea7a048ead545c5803dce0c2f (diff)
downloadchromium_src-c4ca3b454d7a68dd8841d0b2f03f0f81c3cc2a7d.zip
chromium_src-c4ca3b454d7a68dd8841d0b2f03f0f81c3cc2a7d.tar.gz
chromium_src-c4ca3b454d7a68dd8841d0b2f03f0f81c3cc2a7d.tar.bz2
Rename webkit_blob::FileReader to FileStreamReader.
The name was confusion: it does not directly correspond to FileReader in File API, (which is implemented by WebCore::FileReader). BUG=128483 TEST=Existing file/blob tests. Review URL: https://chromiumcodereview.appspot.com/10447083 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@139724 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/file_system_mount_point_provider.h')
-rw-r--r--webkit/fileapi/file_system_mount_point_provider.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/webkit/fileapi/file_system_mount_point_provider.h b/webkit/fileapi/file_system_mount_point_provider.h
index e47681b..6161724 100644
--- a/webkit/fileapi/file_system_mount_point_provider.h
+++ b/webkit/fileapi/file_system_mount_point_provider.h
@@ -17,7 +17,7 @@
class GURL;
namespace webkit_blob {
-class FileReader;
+class FileStreamReader;
}
namespace fileapi {
@@ -92,12 +92,12 @@ class FILEAPI_EXPORT FileSystemMountPointProvider {
const FilePath& virtual_path,
FileSystemContext* context) const = 0;
- // Creates a new file reader for a given filesystem URL |url| with a offset
- // |offset|.
+ // Creates a new file stream reader for a given filesystem URL |url| with an
+ // offset |offset|.
// The returned object must be owned and managed by the caller.
// This method itself does *not* check if the given path exists and is a
// regular file.
- virtual webkit_blob::FileReader* CreateFileReader(
+ virtual webkit_blob::FileStreamReader* CreateFileStreamReader(
const GURL& url,
int64 offset,
FileSystemContext* context) const = 0;