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

Unified Diff: webkit/fileapi/syncable/syncable_file_system_util.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/syncable/syncable_file_system_util.h
diff --git a/webkit/fileapi/syncable/syncable_file_system_util.h b/webkit/fileapi/syncable/syncable_file_system_util.h
index d00092ce189e7ee42788c9f4a2d9c96bf307d57b..cfe9ce88da78daa80a19704ccec184a90826ae47 100644
--- a/webkit/fileapi/syncable/syncable_file_system_util.h
+++ b/webkit/fileapi/syncable/syncable_file_system_util.h
@@ -9,19 +9,19 @@
#include "base/file_path.h"
#include "webkit/fileapi/file_system_url.h"
-#include "webkit/fileapi/fileapi_export.h"
+#include "webkit/storage/storage_export.h"
namespace fileapi {
// Registers a syncable filesystem with the given |service_name|.
-FILEAPI_EXPORT bool RegisterSyncableFileSystem(const std::string& service_name);
+STORAGE_EXPORT bool RegisterSyncableFileSystem(const std::string& service_name);
// Revokes the syncable filesystem that was registered with |service_name|.
-FILEAPI_EXPORT bool RevokeSyncableFileSystem(const std::string& service_name);
+STORAGE_EXPORT bool RevokeSyncableFileSystem(const std::string& service_name);
// Returns the root URI of the syncable filesystem that can be specified by a
// pair of |origin| and |service_name|.
-FILEAPI_EXPORT GURL GetSyncableFileSystemRootURI(
+STORAGE_EXPORT GURL GetSyncableFileSystemRootURI(
const GURL& origin, const std::string& service_name);
// Creates a FileSystem URL for the |path| in a syncable filesystem
@@ -32,7 +32,7 @@ FILEAPI_EXPORT GURL GetSyncableFileSystemRootURI(
// service_name: 'service_name',
// path: '/foo/bar',
// returns 'filesystem:http://www.example.com/external/service_name/foo/bar'
-FILEAPI_EXPORT FileSystemURL CreateSyncableFileSystemURL(
+STORAGE_EXPORT FileSystemURL CreateSyncableFileSystemURL(
const GURL& origin, const std::string& service_name, const FilePath& path);
// Serializes a given FileSystemURL |url| and sets the serialized string to
@@ -50,7 +50,7 @@ FILEAPI_EXPORT FileSystemURL CreateSyncableFileSystemURL(
// 'filesystem:http://www.example.com/external/service_name/foo\\bar'
// (on others)
// 'filesystem:http://www.example.com/external/service_name/foo/bar'
-FILEAPI_EXPORT bool SerializeSyncableFileSystemURL(
+STORAGE_EXPORT bool SerializeSyncableFileSystemURL(
const FileSystemURL& url, std::string* serialized_url);
// Deserializes a serialized FileSystem URL string |serialized_url| and sets the
@@ -63,7 +63,7 @@ FILEAPI_EXPORT bool SerializeSyncableFileSystemURL(
// behavior).
//
// See the comment of SerializeSyncableFileSystemURL() for more details.
-FILEAPI_EXPORT bool DeserializeSyncableFileSystemURL(
+STORAGE_EXPORT bool DeserializeSyncableFileSystemURL(
const std::string& serialized_url, FileSystemURL* url);
} // namespace fileapi

Powered by Google App Engine
This is Rietveld 408576698