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

Unified Diff: webkit/fileapi/file_system_mount_point_provider.h

Issue 7067020: Moving mediaplayer to the chrome filebrowser. Observable behaviour should not change. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed style errors and localized strings. Created 9 years, 7 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
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 50e0d399931ec3bcacc15bad97a78475991903a3..1a755ae2fb771b9bb5c8cc8be68c76b4c4883d64 100644
--- a/webkit/fileapi/file_system_mount_point_provider.h
+++ b/webkit/fileapi/file_system_mount_point_provider.h
@@ -70,7 +70,10 @@ 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.
zel 2011/05/24 17:54:25 Add: Returns false when filesystem path is not exp
SeRya 2011/05/25 14:23:49 Done.
+ virtual bool GetVirtualPath(const FilePath& filesystem_path,
+ FilePath* virtual_path) = 0;
};
} // namespace fileapi

Powered by Google App Engine
This is Rietveld 408576698