| Index: webkit/browser/fileapi/file_system_file_util.h
|
| diff --git a/webkit/browser/fileapi/file_system_file_util.h b/webkit/browser/fileapi/file_system_file_util.h
|
| index 3d2965222de873c9e5c087bba8def257bdb81add..3a0c6b79839c8b46766a6a0a9f267d493cfec6a6 100644
|
| --- a/webkit/browser/fileapi/file_system_file_util.h
|
| +++ b/webkit/browser/fileapi/file_system_file_util.h
|
| @@ -9,7 +9,7 @@
|
| #include "base/files/file_path.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "webkit/browser/fileapi/file_system_operation.h"
|
| -#include "webkit/browser/webkit_storage_browser_export.h"
|
| +#include "webkit/browser/storage_export.h"
|
| #include "webkit/common/blob/scoped_file.h"
|
|
|
| namespace base {
|
| @@ -26,12 +26,12 @@ class FileSystemURL;
|
| //
|
| // Layering structure of the FileSystemFileUtil was split out.
|
| // See http://crbug.com/128136 if you need it.
|
| -class WEBKIT_STORAGE_BROWSER_EXPORT FileSystemFileUtil {
|
| +class STORAGE_EXPORT FileSystemFileUtil {
|
| public:
|
| typedef FileSystemOperation::CopyOrMoveOption CopyOrMoveOption;
|
|
|
| // It will be implemented by each subclass such as FileSystemFileEnumerator.
|
| - class WEBKIT_STORAGE_BROWSER_EXPORT AbstractFileEnumerator {
|
| + class STORAGE_EXPORT AbstractFileEnumerator {
|
| public:
|
| virtual ~AbstractFileEnumerator() {}
|
|
|
| @@ -47,7 +47,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT FileSystemFileUtil {
|
| virtual bool IsDirectory() = 0;
|
| };
|
|
|
| - class WEBKIT_STORAGE_BROWSER_EXPORT EmptyFileEnumerator
|
| + class STORAGE_EXPORT EmptyFileEnumerator
|
| : public AbstractFileEnumerator {
|
| virtual base::FilePath Next() OVERRIDE;
|
| virtual int64 Size() OVERRIDE;
|
|
|