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

Unified Diff: webkit/fileapi/isolated_context.h

Issue 11103031: webkit: Merge blob and fileapi into one build target 'storage' (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Leave *.gypi files in blob and fileapi Created 8 years, 2 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/fileapi/fileapi_export.h ('k') | webkit/fileapi/isolated_file_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/isolated_context.h
diff --git a/webkit/fileapi/isolated_context.h b/webkit/fileapi/isolated_context.h
index 41236373335885793e6f847531da5691388759df..e0cea7cfc8a431d7f1eaad9d4ac5106d2b37e6d5 100644
--- a/webkit/fileapi/isolated_context.h
+++ b/webkit/fileapi/isolated_context.h
@@ -12,11 +12,11 @@
#include "base/basictypes.h"
#include "base/file_path.h"
+#include "base/lazy_instance.h"
#include "base/memory/singleton.h"
#include "base/synchronization/lock.h"
-#include "base/lazy_instance.h"
#include "webkit/fileapi/file_system_types.h"
-#include "webkit/fileapi/fileapi_export.h"
+#include "webkit/storage/webkit_storage_export.h"
namespace fileapi {
@@ -52,9 +52,9 @@ namespace fileapi {
// TODO(kinuko): This should have a better name since this handles both
// isolated and external file systems.
//
-class FILEAPI_EXPORT IsolatedContext {
+class WEBKIT_STORAGE_EXPORT IsolatedContext {
public:
- struct FILEAPI_EXPORT FileInfo {
+ struct WEBKIT_STORAGE_EXPORT FileInfo {
FileInfo();
FileInfo(const std::string& name, const FilePath& path);
@@ -70,7 +70,7 @@ class FILEAPI_EXPORT IsolatedContext {
bool operator<(const FileInfo& that) const { return name < that.name; }
};
- class FILEAPI_EXPORT FileInfoSet {
+ class WEBKIT_STORAGE_EXPORT FileInfoSet {
public:
FileInfoSet();
~FileInfoSet();
@@ -244,7 +244,7 @@ class FILEAPI_EXPORT IsolatedContext {
};
// Registers a scoped external filesystem which gets revoked when it scopes out.
-class FILEAPI_EXPORT ScopedExternalFileSystem {
+class WEBKIT_STORAGE_EXPORT ScopedExternalFileSystem {
public:
ScopedExternalFileSystem(const std::string& mount_name,
FileSystemType type,
« no previous file with comments | « webkit/fileapi/fileapi_export.h ('k') | webkit/fileapi/isolated_file_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698