summaryrefslogtreecommitdiffstats
path: root/webkit/fileapi/file_system_mount_point_provider.h
diff options
context:
space:
mode:
authorserya@google.com <serya@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-27 10:11:40 +0000
committerserya@google.com <serya@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-05-27 10:11:40 +0000
commitce9802042c9b9ff0bd4e60b017333ff5735201b2 (patch)
tree6914a3c7fb6fa398fddb0096dc9db62d7d4d632c /webkit/fileapi/file_system_mount_point_provider.h
parent60a1d495e24ed67cd9c1559395d183cd8a85504f (diff)
downloadchromium_src-ce9802042c9b9ff0bd4e60b017333ff5735201b2.zip
chromium_src-ce9802042c9b9ff0bd4e60b017333ff5735201b2.tar.gz
chromium_src-ce9802042c9b9ff0bd4e60b017333ff5735201b2.tar.bz2
Moving mediaplayer to the chrome filebrowser. Observable behaviour should not change.
BUG=chromium-os:14880 TEST=Click "play" button on an audion file in the file browser. Check that the mediaplayer panel has popped up. Click on another file. Check that the mediaplayer playlist panel has popped up and contains 2 items. Review URL: http://codereview.chromium.org/7067020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87002 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/fileapi/file_system_mount_point_provider.h')
-rw-r--r--webkit/fileapi/file_system_mount_point_provider.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/webkit/fileapi/file_system_mount_point_provider.h b/webkit/fileapi/file_system_mount_point_provider.h
index 50e0d39..edf158f 100644
--- a/webkit/fileapi/file_system_mount_point_provider.h
+++ b/webkit/fileapi/file_system_mount_point_provider.h
@@ -70,7 +70,11 @@ class ExternalFileSystemMountPointProvider
// Adds a new mount point.
virtual void AddMountPoint(FilePath mount_point) = 0;
// Remove a mount point.
- virtual void RemoveMountPoint(FilePath mount_point) = 0;
+ virtual void RemoveMountPoint(FilePath mount_point) = 0;
+ // Gets virtual path by known filesystem path. Returns false when filesystem
+ // path is not exposed by this provider.
+ virtual bool GetVirtualPath(const FilePath& filesystem_path,
+ FilePath* virtual_path) = 0;
};
} // namespace fileapi