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

Unified Diff: webkit/browser/fileapi/file_system_file_util.h

Issue 16701004: Fix webkit_storage exports definitions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 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/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 0623b46c1e05f43fe07d33835acd5100034c032e..13ea0e40a4d251f830ff5f0e9860bddff4628e9a 100644
--- a/webkit/browser/fileapi/file_system_file_util.h
+++ b/webkit/browser/fileapi/file_system_file_util.h
@@ -8,8 +8,8 @@
#include "base/files/file_path.h"
#include "base/memory/scoped_ptr.h"
#include "base/platform_file.h"
+#include "webkit/browser/webkit_storage_browser_export.h"
#include "webkit/common/blob/scoped_file.h"
-#include "webkit/storage/webkit_storage_export.h"
namespace base {
class Time;
@@ -25,10 +25,10 @@ class FileSystemURL;
//
// Layering structure of the FileSystemFileUtil was split out.
// See http://crbug.com/128136 if you need it.
-class WEBKIT_STORAGE_EXPORT FileSystemFileUtil {
+class WEBKIT_STORAGE_BROWSER_EXPORT FileSystemFileUtil {
public:
// It will be implemented by each subclass such as FileSystemFileEnumerator.
- class WEBKIT_STORAGE_EXPORT AbstractFileEnumerator {
+ class WEBKIT_STORAGE_BROWSER_EXPORT AbstractFileEnumerator {
public:
virtual ~AbstractFileEnumerator() {}
@@ -44,7 +44,7 @@ class WEBKIT_STORAGE_EXPORT FileSystemFileUtil {
virtual bool IsDirectory() = 0;
};
- class WEBKIT_STORAGE_EXPORT EmptyFileEnumerator
+ class WEBKIT_STORAGE_BROWSER_EXPORT EmptyFileEnumerator
: public AbstractFileEnumerator {
virtual base::FilePath Next() OVERRIDE;
virtual int64 Size() OVERRIDE;
« no previous file with comments | « webkit/browser/fileapi/file_system_file_stream_reader.h ('k') | webkit/browser/fileapi/file_system_mount_point_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698