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

Unified Diff: chrome/browser/sync_file_system/drive_backend/metadata_db_migration_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/drive_backend/metadata_db_migration_util.cc
diff --git a/chrome/browser/sync_file_system/drive_backend/metadata_db_migration_util.cc b/chrome/browser/sync_file_system/drive_backend/metadata_db_migration_util.cc
index d2df813460071df8326efc87152d7ffe6f3e656d..92f33c17b46f4659bf3c0d6b6e063fdd7f17b1ec 100644
--- a/chrome/browser/sync_file_system/drive_backend/metadata_db_migration_util.cc
+++ b/chrome/browser/sync_file_system/drive_backend/metadata_db_migration_util.cc
@@ -10,8 +10,8 @@
#include "chrome/browser/sync_file_system/drive_backend/drive_backend_util.h"
#include "third_party/leveldatabase/src/include/leveldb/write_batch.h"
#include "url/gurl.h"
-#include "webkit/common/fileapi/file_system_types.h"
-#include "webkit/common/fileapi/file_system_util.h"
+#include "storage/common/fileapi/file_system_types.h"
+#include "storage/common/fileapi/file_system_util.h"
namespace sync_file_system {
namespace drive_backend {
@@ -28,12 +28,12 @@ const char kWapiFolderIdPrefix[] = "folder:";
bool ParseV0FormatFileSystemURL(const GURL& url,
GURL* origin,
base::FilePath* path) {
- fileapi::FileSystemType mount_type;
+ storage::FileSystemType mount_type;
base::FilePath virtual_path;
- if (!fileapi::ParseFileSystemSchemeURL(
+ if (!storage::ParseFileSystemSchemeURL(
url, origin, &mount_type, &virtual_path) ||
- mount_type != fileapi::kFileSystemTypeExternal) {
+ mount_type != storage::kFileSystemTypeExternal) {
NOTREACHED() << "Failed to parse filesystem scheme URL " << url.spec();
return false;
}

Powered by Google App Engine
This is Rietveld 408576698