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

Side by Side Diff: webkit/fileapi/isolated_mount_point_provider.h

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, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WEBKIT_FILEAPI_ISOLATED_MOUNT_POINT_PROVIDER_H_ 5 #ifndef WEBKIT_FILEAPI_ISOLATED_MOUNT_POINT_PROVIDER_H_
6 #define WEBKIT_FILEAPI_ISOLATED_MOUNT_POINT_PROVIDER_H_ 6 #define WEBKIT_FILEAPI_ISOLATED_MOUNT_POINT_PROVIDER_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 28 matching lines...) Expand all
39 virtual bool IsRestrictedFileName(const FilePath& filename) const OVERRIDE; 39 virtual bool IsRestrictedFileName(const FilePath& filename) const OVERRIDE;
40 virtual std::vector<FilePath> GetRootDirectories() const OVERRIDE; 40 virtual std::vector<FilePath> GetRootDirectories() const OVERRIDE;
41 virtual FileSystemFileUtil* GetFileUtil() OVERRIDE; 41 virtual FileSystemFileUtil* GetFileUtil() OVERRIDE;
42 virtual FilePath GetPathForPermissionsCheck(const FilePath& virtual_path) 42 virtual FilePath GetPathForPermissionsCheck(const FilePath& virtual_path)
43 const OVERRIDE; 43 const OVERRIDE;
44 virtual FileSystemOperationInterface* CreateFileSystemOperation( 44 virtual FileSystemOperationInterface* CreateFileSystemOperation(
45 const GURL& origin_url, 45 const GURL& origin_url,
46 FileSystemType file_system_type, 46 FileSystemType file_system_type,
47 const FilePath& virtual_path, 47 const FilePath& virtual_path,
48 FileSystemContext* context) const OVERRIDE; 48 FileSystemContext* context) const OVERRIDE;
49 virtual webkit_blob::FileReader* CreateFileReader( 49 virtual webkit_blob::FileStreamReader* CreateFileStreamReader(
50 const GURL& url, 50 const GURL& url,
51 int64 offset, 51 int64 offset,
52 FileSystemContext* context) const OVERRIDE; 52 FileSystemContext* context) const OVERRIDE;
53 virtual FileWriter* CreateFileWriter( 53 virtual FileWriter* CreateFileWriter(
54 const GURL& url, 54 const GURL& url,
55 int64 offset, 55 int64 offset,
56 FileSystemContext* context) const OVERRIDE; 56 FileSystemContext* context) const OVERRIDE;
57 virtual FileSystemQuotaUtil* GetQuotaUtil() OVERRIDE; 57 virtual FileSystemQuotaUtil* GetQuotaUtil() OVERRIDE;
58 58
59 private: 59 private:
60 IsolatedContext* isolated_context() const; 60 IsolatedContext* isolated_context() const;
61 FilePath GetPathFromURL(const GURL& url) const; 61 FilePath GetPathFromURL(const GURL& url) const;
62 62
63 scoped_ptr<FileSystemFileUtil> isolated_file_util_; 63 scoped_ptr<FileSystemFileUtil> isolated_file_util_;
64 }; 64 };
65 65
66 } // namespace fileapi 66 } // namespace fileapi
67 67
68 #endif // WEBKIT_FILEAPI_ISOLATED_MOUNT_POINT_PROVIDER_H_ 68 #endif // WEBKIT_FILEAPI_ISOLATED_MOUNT_POINT_PROVIDER_H_
OLDNEW
« no previous file with comments | « webkit/fileapi/file_system_url_request_job.cc ('k') | webkit/fileapi/isolated_mount_point_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698