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

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

Issue 498273002: Rename storage-related export macros and build targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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 74a46078466be45bb3b76168a1f190346806a13a..a1e5f76a23daa84edd16fb5475bfe619ce48de10 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/browser/webkit_storage_browser_export.h"
+#include "webkit/browser/storage_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_BROWSER_EXPORT FileUpdateObserver {
+class STORAGE_EXPORT FileUpdateObserver {
public:
FileUpdateObserver() {}
virtual ~FileUpdateObserver() {}
@@ -44,7 +44,7 @@ class WEBKIT_STORAGE_BROWSER_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_BROWSER_EXPORT FileAccessObserver {
+class STORAGE_EXPORT FileAccessObserver {
public:
FileAccessObserver() {}
virtual ~FileAccessObserver() {}
@@ -60,7 +60,7 @@ class WEBKIT_STORAGE_BROWSER_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_BROWSER_EXPORT FileChangeObserver {
+class STORAGE_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