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

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

Issue 6603034: Stop returning the true root path of each filesystem from openFileSystem.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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/file_system_file_util.cc ('k') | webkit/fileapi/file_system_operation.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef WEBKIT_FILEAPI_FILE_SYSTEM_MOUNT_POINT_PROVIDER_H_
6 #define WEBKIT_FILEAPI_FILE_SYSTEM_MOUNT_POINT_PROVIDER_H_
7
8 #include "base/file_path.h"
9 #include "googleurl/src/gurl.h"
10 #include "webkit/fileapi/file_system_path_manager.h"
11 #include "webkit/fileapi/file_system_types.h"
12
13 namespace fileapi {
14
15 // An interface to provide local filesystem paths.
16
17 class FileSystemMountPointProvider {
18 public:
19 virtual ~FileSystemMountPointProvider() {}
20
21 // Checks if mount point access is allowed from |origin_url|.
22 virtual bool IsAccessAllowed(const GURL& origin_url) = 0;
23
24 // Retrieves the root path for the given |origin_url| and |type|, and
25 // calls the given |callback| with the root path and name.
26 // If |create| is true this also creates the directory if it doesn't exist.
27 virtual void GetFileSystemRootPath(
28 const GURL& origin_url,
29 FileSystemType type,
30 bool create,
31 FileSystemPathManager::GetRootPathCallback* callback) = 0;
32
33 // Like GetFileSystemRootPath, but synchronous, and can be called only while
34 // running on the file thread.
35 virtual FilePath GetFileSystemRootPathOnFileThread(
36 const GURL& origin_url,
37 FileSystemType type,
38 bool create) = 0;
39
40 // Checks if a given |name| contains any restricted names/chars in it.
41 // Callable on any thread.
42 virtual bool IsRestrictedFileName(const FilePath& filename) const = 0;
43 };
44
45 } // namespace fileapi
46
47 #endif // WEBKIT_FILEAPI_FILE_SYSTEM_MOUNT_POINT_PROVIDER_H_
48
OLDNEW
« no previous file with comments | « webkit/fileapi/file_system_file_util.cc ('k') | webkit/fileapi/file_system_operation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698