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

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: Removed DCHECK, added lock in PortableDeviceWatcherWin and fixed tests. Created 8 years 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 bab08812f68f2c2da8f17b7ce4050a5a522947d7..aabea94daed76a1707635990d062639edee90601 100644
--- a/webkit/fileapi/file_system_file_util.h
+++ b/webkit/fileapi/file_system_file_util.h
@@ -35,7 +35,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() {}
@@ -61,7 +61,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