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

Unified Diff: chrome/browser/chromeos/file_system_provider/mount_path_util.h

Issue 258783006: [fsp] Add the getMetadata operation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 6 years, 8 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: chrome/browser/chromeos/file_system_provider/mount_path_util.h
diff --git a/chrome/browser/chromeos/file_system_provider/mount_path_util.h b/chrome/browser/chromeos/file_system_provider/mount_path_util.h
index 25f6129fa374bf513540f92fa58c58bd5ac36766..91f91e935ae8ed039aaeece4ae0f70334d0c9638 100644
--- a/chrome/browser/chromeos/file_system_provider/mount_path_util.h
+++ b/chrome/browser/chromeos/file_system_provider/mount_path_util.h
@@ -25,16 +25,15 @@ base::FilePath GetMountPath(Profile* profile,
int file_system_id);
// Finds file system, which is responsible for handling the specified |url| by
-// analysing the mount path.
-// Also, extract the file path from the virtual path to be used by the file
-// system operations.
+// analysing the mount path. Also, extract the file path from the virtual path
+// to be used by the file system operations.
class FileSystemURLParser {
public:
explicit FileSystemURLParser(const fileapi::FileSystemURL& url);
virtual ~FileSystemURLParser();
// Parses the |url| passed to the constructor. If parsing succeeds, then
- // returns true. Otherwise, false.
+ // returns true. Otherwise, false. Must be called on UI thread.
bool Parse();
ProvidedFileSystemInterface* file_system() const { return file_system_; }

Powered by Google App Engine
This is Rietveld 408576698