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

Unified Diff: chrome/browser/sync_file_system/syncable_file_system_util.cc

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
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
Index: chrome/browser/sync_file_system/syncable_file_system_util.cc
diff --git a/chrome/browser/sync_file_system/syncable_file_system_util.cc b/chrome/browser/sync_file_system/syncable_file_system_util.cc
index e03f33986a11f6d52d8564726c5d36e686479ffc..04662096c1af783b8f2f0cd3708a640609bdf1c9 100644
--- a/chrome/browser/sync_file_system/syncable_file_system_util.cc
+++ b/chrome/browser/sync_file_system/syncable_file_system_util.cc
@@ -9,14 +9,14 @@
#include "base/command_line.h"
#include "base/location.h"
#include "base/strings/string_util.h"
-#include "webkit/browser/fileapi/external_mount_points.h"
-#include "webkit/browser/fileapi/file_observers.h"
-#include "webkit/browser/fileapi/file_system_context.h"
-#include "webkit/common/fileapi/file_system_util.h"
+#include "storage/browser/fileapi/external_mount_points.h"
+#include "storage/browser/fileapi/file_observers.h"
+#include "storage/browser/fileapi/file_system_context.h"
+#include "storage/common/fileapi/file_system_util.h"
-using fileapi::ExternalMountPoints;
-using fileapi::FileSystemContext;
-using fileapi::FileSystemURL;
+using storage::ExternalMountPoints;
+using storage::FileSystemContext;
+using storage::FileSystemURL;
namespace sync_file_system {
@@ -45,13 +45,13 @@ void Noop() {}
void RegisterSyncableFileSystem() {
ExternalMountPoints::GetSystemInstance()->RegisterFileSystem(
kSyncableMountName,
- fileapi::kFileSystemTypeSyncable,
- fileapi::FileSystemMountOption(),
+ storage::kFileSystemTypeSyncable,
+ storage::FileSystemMountOption(),
base::FilePath());
ExternalMountPoints::GetSystemInstance()->RegisterFileSystem(
kSyncableMountNameForInternalSync,
- fileapi::kFileSystemTypeSyncableForInternalSync,
- fileapi::FileSystemMountOption(),
+ storage::kFileSystemTypeSyncableForInternalSync,
+ storage::FileSystemMountOption(),
base::FilePath());
}
@@ -63,14 +63,14 @@ void RevokeSyncableFileSystem() {
}
GURL GetSyncableFileSystemRootURI(const GURL& origin) {
- return GURL(fileapi::GetExternalFileSystemRootURIString(
- origin, kSyncableMountName));
+ return GURL(
+ storage::GetExternalFileSystemRootURIString(origin, kSyncableMountName));
}
FileSystemURL CreateSyncableFileSystemURL(const GURL& origin,
const base::FilePath& path) {
base::FilePath path_for_url = path;
- if (fileapi::VirtualPath::IsAbsolute(path.value()))
+ if (storage::VirtualPath::IsAbsolute(path.value()))
path_for_url = base::FilePath(path.value().substr(1));
return ExternalMountPoints::GetSystemInstance()->CreateExternalFileSystemURL(
@@ -78,7 +78,7 @@ FileSystemURL CreateSyncableFileSystemURL(const GURL& origin,
}
FileSystemURL CreateSyncableFileSystemURLForSync(
- fileapi::FileSystemContext* file_system_context,
+ storage::FileSystemContext* file_system_context,
const FileSystemURL& syncable_url) {
return ExternalMountPoints::GetSystemInstance()->CreateExternalFileSystemURL(
syncable_url.origin(),
@@ -88,7 +88,7 @@ FileSystemURL CreateSyncableFileSystemURLForSync(
bool SerializeSyncableFileSystemURL(const FileSystemURL& url,
std::string* serialized_url) {
- if (!url.is_valid() || url.type() != fileapi::kFileSystemTypeSyncable)
+ if (!url.is_valid() || url.type() != storage::kFileSystemTypeSyncable)
return false;
*serialized_url =
GetSyncableFileSystemRootURI(url.origin()).spec() +
@@ -105,7 +105,7 @@ bool DeserializeSyncableFileSystemURL(
FileSystemURL deserialized =
ExternalMountPoints::GetSystemInstance()->CrackURL(GURL(serialized_url));
if (!deserialized.is_valid() ||
- deserialized.type() != fileapi::kFileSystemTypeSyncable) {
+ deserialized.type() != storage::kFileSystemTypeSyncable) {
return false;
}

Powered by Google App Engine
This is Rietveld 408576698