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

Unified Diff: chrome/browser/extensions/api/sync_file_system/sync_file_system_api_helpers.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/extensions/api/sync_file_system/sync_file_system_api_helpers.cc
diff --git a/chrome/browser/extensions/api/sync_file_system/sync_file_system_api_helpers.cc b/chrome/browser/extensions/api/sync_file_system/sync_file_system_api_helpers.cc
index 724b6893fc8ff31d918f08d317765637b22bd97b..6cfbf8a18624f63dac91d052c1e69ffe49797346 100644
--- a/chrome/browser/extensions/api/sync_file_system/sync_file_system_api_helpers.cc
+++ b/chrome/browser/extensions/api/sync_file_system/sync_file_system_api_helpers.cc
@@ -5,8 +5,8 @@
#include "chrome/browser/extensions/api/sync_file_system/sync_file_system_api_helpers.h"
#include "base/logging.h"
-#include "webkit/browser/fileapi/file_system_url.h"
-#include "webkit/common/fileapi/file_system_util.h"
+#include "storage/browser/fileapi/file_system_url.h"
+#include "storage/common/fileapi/file_system_util.h"
namespace extensions {
@@ -106,16 +106,17 @@ ConflictResolutionPolicyToExtensionEnum(
}
base::DictionaryValue* CreateDictionaryValueForFileSystemEntry(
- const fileapi::FileSystemURL& url,
+ const storage::FileSystemURL& url,
sync_file_system::SyncFileType file_type) {
if (!url.is_valid() || file_type == sync_file_system::SYNC_FILE_TYPE_UNKNOWN)
return NULL;
- std::string file_path = base::FilePath(
- fileapi::VirtualPath::GetNormalizedFilePath(url.path())).AsUTF8Unsafe();
+ std::string file_path =
+ base::FilePath(storage::VirtualPath::GetNormalizedFilePath(url.path()))
+ .AsUTF8Unsafe();
- std::string root_url = fileapi::GetFileSystemRootURI(
- url.origin(), url.mount_type()).spec();
+ std::string root_url =
+ storage::GetFileSystemRootURI(url.origin(), url.mount_type()).spec();
if (!url.filesystem_id().empty()) {
root_url.append(url.filesystem_id());
root_url.append("/");
@@ -123,9 +124,9 @@ base::DictionaryValue* CreateDictionaryValueForFileSystemEntry(
base::DictionaryValue* dict = new base::DictionaryValue;
dict->SetString("fileSystemType",
- fileapi::GetFileSystemTypeString(url.mount_type()));
+ storage::GetFileSystemTypeString(url.mount_type()));
dict->SetString("fileSystemName",
- fileapi::GetFileSystemName(url.origin(), url.type()));
+ storage::GetFileSystemName(url.origin(), url.type()));
dict->SetString("rootUrl", root_url);
dict->SetString("filePath", file_path);
dict->SetBoolean("isDirectory",

Powered by Google App Engine
This is Rietveld 408576698