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

Unified Diff: webkit/fileapi/file_system_file_util.h

Issue 11297002: [Media Gallery] Added code to support mtp device media file system on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed review comment and disabled MediaFileSystemRegistryTest.GalleryNameMTP 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
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 10e7868d0be89ed9dda12cd27d5fb33827ca74a2..5da42cd7114e2e88adacb557b821ef859d6f96e7 100644
--- a/webkit/fileapi/file_system_file_util.h
+++ b/webkit/fileapi/file_system_file_util.h
@@ -31,7 +31,7 @@ class FileSystemOperationContext;
class WEBKIT_STORAGE_EXPORT FileSystemFileUtil {
public:
// It will be implemented by each subclass such as FileSystemFileEnumerator.
- class AbstractFileEnumerator {
+ class WEBKIT_STORAGE_EXPORT AbstractFileEnumerator {
public:
virtual ~AbstractFileEnumerator() {}
@@ -57,7 +57,8 @@ class WEBKIT_STORAGE_EXPORT FileSystemFileUtil {
kSnapshotFileTemporary,
};
- class EmptyFileEnumerator : public AbstractFileEnumerator {
+ class WEBKIT_STORAGE_EXPORT EmptyFileEnumerator
+ : public AbstractFileEnumerator {
virtual FilePath Next() OVERRIDE;
virtual int64 Size() OVERRIDE;
virtual base::Time LastModifiedTime() OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698