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

Unified Diff: webkit/browser/fileapi/file_observers.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
« no previous file with comments | « webkit/browser/fileapi/external_mount_points.h ('k') | webkit/browser/fileapi/file_permission_policy.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/fileapi/file_observers.h
diff --git a/webkit/browser/fileapi/file_observers.h b/webkit/browser/fileapi/file_observers.h
index 873156f70034055854e0472ffc96e1dbb807c67b..c791503d82f4e7084ab59e8cec67508129f45967 100644
--- a/webkit/browser/fileapi/file_observers.h
+++ b/webkit/browser/fileapi/file_observers.h
@@ -6,7 +6,7 @@
#define WEBKIT_BROWSER_FILEAPI_FILE_OBSERVERS_H_
#include "base/basictypes.h"
-#include "webkit/storage/webkit_storage_export.h"
+#include "webkit/browser/webkit_storage_browser_export.h"
// TODO(kinuko): Split this file into per-observer multiple files.
@@ -27,7 +27,7 @@ class FileSystemURL;
//
// OnUpdate() is called each time the |url| is updated but works only for
// sandboxed files (where usage is tracked).
-class WEBKIT_STORAGE_EXPORT FileUpdateObserver {
+class WEBKIT_STORAGE_BROWSER_EXPORT FileUpdateObserver {
public:
FileUpdateObserver() {}
virtual ~FileUpdateObserver() {}
@@ -44,7 +44,7 @@ class WEBKIT_STORAGE_EXPORT FileUpdateObserver {
// OnAccess is called whenever an operation reads file contents or metadata.
// (It is called only once per operation regardless of whether the operation
// is recursive or not)
-class WEBKIT_STORAGE_EXPORT FileAccessObserver {
+class WEBKIT_STORAGE_BROWSER_EXPORT FileAccessObserver {
public:
FileAccessObserver() {}
virtual ~FileAccessObserver() {}
@@ -60,7 +60,7 @@ class WEBKIT_STORAGE_EXPORT FileAccessObserver {
// removed or modified. For recursive operations each method is called for
// each subdirectory/subfile. Currently ChangeObserver is only supported
// by the local sandbox file system.
-class WEBKIT_STORAGE_EXPORT FileChangeObserver {
+class WEBKIT_STORAGE_BROWSER_EXPORT FileChangeObserver {
public:
FileChangeObserver() {}
virtual ~FileChangeObserver() {}
« no previous file with comments | « webkit/browser/fileapi/external_mount_points.h ('k') | webkit/browser/fileapi/file_permission_policy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698