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

Unified Diff: webkit/fileapi/file_system_mount_point_provider.h

Issue 11648027: Extract external file systems handling from isolated context. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/fileapi/file_system_context.cc ('k') | webkit/fileapi/file_system_url.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/file_system_mount_point_provider.h
diff --git a/webkit/fileapi/file_system_mount_point_provider.h b/webkit/fileapi/file_system_mount_point_provider.h
index 4f0950e29ce5ad9acd7613c40cdab0e865aa81fe..24c00fe0e6a930df1d689b4c6ee84554ca700ff3 100644
--- a/webkit/fileapi/file_system_mount_point_provider.h
+++ b/webkit/fileapi/file_system_mount_point_provider.h
@@ -141,14 +141,14 @@ class ExternalFileSystemMountPointProvider
virtual void RevokeAccessForExtension(
const std::string& extension_id) = 0;
// Checks if a given |mount_point| already exists.
- virtual bool HasMountPoint(const FilePath& mount_point) = 0;
+ virtual bool HasMountPoint(const FilePath& mount_point) const = 0;
// Adds a new local mount point.
- virtual void AddLocalMountPoint(const FilePath& mount_point) = 0;
+ virtual bool AddLocalMountPoint(const FilePath& mount_point) = 0;
// Adds a new local mount point that will be accessible only by extensions
// that have been granted full acess for all external file systems.
- virtual void AddRestrictedLocalMountPoint(const FilePath& mount_point) = 0;
+ virtual bool AddRestrictedLocalMountPoint(const FilePath& mount_point) = 0;
// Adds a new remote mount point.
- virtual void AddRemoteMountPoint(
+ virtual bool AddRemoteMountPoint(
const FilePath& mount_point,
RemoteFileSystemProxyInterface* remote_proxy) = 0;
// Removes a mount point.
« no previous file with comments | « webkit/fileapi/file_system_context.cc ('k') | webkit/fileapi/file_system_url.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698