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

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: _ 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
Index: webkit/fileapi/isolated_context.h
diff --git a/webkit/fileapi/isolated_context.h b/webkit/fileapi/isolated_context.h
index 41236373335885793e6f847531da5691388759df..5b416390d8e8b5b46f85fa8d54bbf57181519b40 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/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 STORAGE_EXPORT IsolatedContext {
public:
- struct FILEAPI_EXPORT FileInfo {
+ struct 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 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 STORAGE_EXPORT ScopedExternalFileSystem {
public:
ScopedExternalFileSystem(const std::string& mount_name,
FileSystemType type,

Powered by Google App Engine
This is Rietveld 408576698