| 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;
|
| }
|
|
|