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

Side by Side Diff: webkit/chromeos/fileapi/cros_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
« no previous file with comments | « webkit/blob/webkit_blob.gypi ('k') | webkit/chromeos/fileapi/cros_mount_point_provider.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_CHROMEOS_FILEAPI_CROS_MOUNT_POINT_PROVIDER_H_ 5 #ifndef WEBKIT_CHROMEOS_FILEAPI_CROS_MOUNT_POINT_PROVIDER_H_
6 #define WEBKIT_CHROMEOS_FILEAPI_CROS_MOUNT_POINT_PROVIDER_H_ 6 #define WEBKIT_CHROMEOS_FILEAPI_CROS_MOUNT_POINT_PROVIDER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 virtual bool IsRestrictedFileName(const FilePath& filename) const OVERRIDE; 61 virtual bool IsRestrictedFileName(const FilePath& filename) const OVERRIDE;
62 virtual std::vector<FilePath> GetRootDirectories() const OVERRIDE; 62 virtual std::vector<FilePath> GetRootDirectories() const OVERRIDE;
63 virtual fileapi::FileSystemFileUtil* GetFileUtil() OVERRIDE; 63 virtual fileapi::FileSystemFileUtil* GetFileUtil() OVERRIDE;
64 virtual FilePath GetPathForPermissionsCheck(const FilePath& virtual_path) 64 virtual FilePath GetPathForPermissionsCheck(const FilePath& virtual_path)
65 const OVERRIDE; 65 const OVERRIDE;
66 virtual fileapi::FileSystemOperationInterface* CreateFileSystemOperation( 66 virtual fileapi::FileSystemOperationInterface* CreateFileSystemOperation(
67 const GURL& origin_url, 67 const GURL& origin_url,
68 fileapi::FileSystemType file_system_type, 68 fileapi::FileSystemType file_system_type,
69 const FilePath& virtual_path, 69 const FilePath& virtual_path,
70 fileapi::FileSystemContext* context) const OVERRIDE; 70 fileapi::FileSystemContext* context) const OVERRIDE;
71 virtual webkit_blob::FileReader* CreateFileReader( 71 virtual webkit_blob::FileStreamReader* CreateFileStreamReader(
72 const GURL& path, 72 const GURL& path,
73 int64 offset, 73 int64 offset,
74 fileapi::FileSystemContext* context) const OVERRIDE; 74 fileapi::FileSystemContext* context) const OVERRIDE;
75 virtual fileapi::FileWriter* CreateFileWriter( 75 virtual fileapi::FileWriter* CreateFileWriter(
76 const GURL& url, 76 const GURL& url,
77 int64 offset, 77 int64 offset,
78 fileapi::FileSystemContext* context) const OVERRIDE; 78 fileapi::FileSystemContext* context) const OVERRIDE;
79 virtual fileapi::FileSystemQuotaUtil* GetQuotaUtil() OVERRIDE; 79 virtual fileapi::FileSystemQuotaUtil* GetQuotaUtil() OVERRIDE;
80 80
81 // fileapi::ExternalFileSystemMountPointProvider overrides. 81 // fileapi::ExternalFileSystemMountPointProvider overrides.
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 MountPointMap mount_point_map_; 130 MountPointMap mount_point_map_;
131 scoped_refptr<quota::SpecialStoragePolicy> special_storage_policy_; 131 scoped_refptr<quota::SpecialStoragePolicy> special_storage_policy_;
132 scoped_ptr<FileAccessPermissions> file_access_permissions_; 132 scoped_ptr<FileAccessPermissions> file_access_permissions_;
133 scoped_ptr<fileapi::LocalFileUtil> local_file_util_; 133 scoped_ptr<fileapi::LocalFileUtil> local_file_util_;
134 DISALLOW_COPY_AND_ASSIGN(CrosMountPointProvider); 134 DISALLOW_COPY_AND_ASSIGN(CrosMountPointProvider);
135 }; 135 };
136 136
137 } // namespace chromeos 137 } // namespace chromeos
138 138
139 #endif // WEBKIT_CHROMEOS_FILEAPI_CROS_MOUNT_POINT_PROVIDER_H_ 139 #endif // WEBKIT_CHROMEOS_FILEAPI_CROS_MOUNT_POINT_PROVIDER_H_
OLDNEW
« no previous file with comments | « webkit/blob/webkit_blob.gypi ('k') | webkit/chromeos/fileapi/cros_mount_point_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698