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

Side by Side Diff: webkit/fileapi/sandbox_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/fileapi/sandbox_file_writer.cc ('k') | webkit/fileapi/sandbox_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_FILEAPI_SANDBOX_MOUNT_POINT_PROVIDER_H_ 5 #ifndef WEBKIT_FILEAPI_SANDBOX_MOUNT_POINT_PROVIDER_H_
6 #define WEBKIT_FILEAPI_SANDBOX_MOUNT_POINT_PROVIDER_H_ 6 #define WEBKIT_FILEAPI_SANDBOX_MOUNT_POINT_PROVIDER_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 virtual bool IsRestrictedFileName(const FilePath& filename) const OVERRIDE; 91 virtual bool IsRestrictedFileName(const FilePath& filename) const OVERRIDE;
92 virtual std::vector<FilePath> GetRootDirectories() const OVERRIDE; 92 virtual std::vector<FilePath> GetRootDirectories() const OVERRIDE;
93 virtual FileSystemFileUtil* GetFileUtil() OVERRIDE; 93 virtual FileSystemFileUtil* GetFileUtil() OVERRIDE;
94 virtual FilePath GetPathForPermissionsCheck(const FilePath& virtual_path) 94 virtual FilePath GetPathForPermissionsCheck(const FilePath& virtual_path)
95 const OVERRIDE; 95 const OVERRIDE;
96 virtual FileSystemOperationInterface* CreateFileSystemOperation( 96 virtual FileSystemOperationInterface* CreateFileSystemOperation(
97 const GURL& origin_url, 97 const GURL& origin_url,
98 FileSystemType file_system_type, 98 FileSystemType file_system_type,
99 const FilePath& virtual_path, 99 const FilePath& virtual_path,
100 FileSystemContext* context) const OVERRIDE; 100 FileSystemContext* context) const OVERRIDE;
101 virtual webkit_blob::FileReader* CreateFileReader( 101 virtual webkit_blob::FileStreamReader* CreateFileStreamReader(
102 const GURL& url, 102 const GURL& url,
103 int64 offset, 103 int64 offset,
104 FileSystemContext* context) const OVERRIDE; 104 FileSystemContext* context) const OVERRIDE;
105 virtual FileWriter* CreateFileWriter( 105 virtual FileWriter* CreateFileWriter(
106 const GURL& url, 106 const GURL& url,
107 int64 offset, 107 int64 offset,
108 FileSystemContext* context) const OVERRIDE; 108 FileSystemContext* context) const OVERRIDE;
109 virtual FileSystemQuotaUtil* GetQuotaUtil() OVERRIDE; 109 virtual FileSystemQuotaUtil* GetQuotaUtil() OVERRIDE;
110 110
111 FilePath old_base_path() const; 111 FilePath old_base_path() const;
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 base::Time next_release_time_for_open_filesystem_stat_; 198 base::Time next_release_time_for_open_filesystem_stat_;
199 199
200 base::WeakPtrFactory<SandboxMountPointProvider> weak_factory_; 200 base::WeakPtrFactory<SandboxMountPointProvider> weak_factory_;
201 201
202 DISALLOW_COPY_AND_ASSIGN(SandboxMountPointProvider); 202 DISALLOW_COPY_AND_ASSIGN(SandboxMountPointProvider);
203 }; 203 };
204 204
205 } // namespace fileapi 205 } // namespace fileapi
206 206
207 #endif // WEBKIT_FILEAPI_SANDBOX_MOUNT_POINT_PROVIDER_H_ 207 #endif // WEBKIT_FILEAPI_SANDBOX_MOUNT_POINT_PROVIDER_H_
OLDNEW
« no previous file with comments | « webkit/fileapi/sandbox_file_writer.cc ('k') | webkit/fileapi/sandbox_mount_point_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698