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

Unified Diff: webkit/fileapi/file_system_file_util.h

Issue 9638002: Add symbolic link support to FileSystemFileUtil::AbstractFileEnumerator. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/file_util_win.cc ('k') | webkit/fileapi/local_file_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/file_system_file_util.h
diff --git a/webkit/fileapi/file_system_file_util.h b/webkit/fileapi/file_system_file_util.h
index 2cc79d4f85f281441ef1ff8ff028234daff5c735..0e8f41e1efa52fccc709958ec22f9ac5571fd8ed 100644
--- a/webkit/fileapi/file_system_file_util.h
+++ b/webkit/fileapi/file_system_file_util.h
@@ -38,6 +38,7 @@ class FileSystemFileUtil {
virtual int64 Size() = 0;
virtual base::Time LastModifiedTime() = 0;
virtual bool IsDirectory() = 0;
+ virtual bool IsLink() = 0;
};
class EmptyFileEnumerator : public AbstractFileEnumerator {
@@ -45,6 +46,7 @@ class FileSystemFileUtil {
virtual int64 Size() OVERRIDE { return 0; }
virtual base::Time LastModifiedTime() OVERRIDE { return base::Time(); }
virtual bool IsDirectory() OVERRIDE { return false; }
+ virtual bool IsLink() OVERRIDE { return false; }
};
virtual ~FileSystemFileUtil();
« no previous file with comments | « base/file_util_win.cc ('k') | webkit/fileapi/local_file_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698