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

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: 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/syncable/sync_status_code.h ('k') | webkit/fileapi/test_mount_point_provider.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..dcdb024e2c95924ed8ad49e30e58def049f7c0c0 100644
--- a/webkit/fileapi/syncable/syncable_file_system_util.h
+++ b/webkit/fileapi/syncable/syncable_file_system_util.h
@@ -9,19 +9,21 @@
#include "base/file_path.h"
#include "webkit/fileapi/file_system_url.h"
-#include "webkit/fileapi/fileapi_export.h"
+#include "webkit/storage/webkit_storage_export.h"
namespace fileapi {
// Registers a syncable filesystem with the given |service_name|.
-FILEAPI_EXPORT bool RegisterSyncableFileSystem(const std::string& service_name);
+WEBKIT_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);
+WEBKIT_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(
+WEBKIT_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 +34,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(
+WEBKIT_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 +52,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(
+WEBKIT_STORAGE_EXPORT bool SerializeSyncableFileSystemURL(
const FileSystemURL& url, std::string* serialized_url);
// Deserializes a serialized FileSystem URL string |serialized_url| and sets the
@@ -63,7 +65,7 @@ FILEAPI_EXPORT bool SerializeSyncableFileSystemURL(
// behavior).
//
// See the comment of SerializeSyncableFileSystemURL() for more details.
-FILEAPI_EXPORT bool DeserializeSyncableFileSystemURL(
+WEBKIT_STORAGE_EXPORT bool DeserializeSyncableFileSystemURL(
const std::string& serialized_url, FileSystemURL* url);
} // namespace fileapi
« no previous file with comments | « webkit/fileapi/syncable/sync_status_code.h ('k') | webkit/fileapi/test_mount_point_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698