| Index: chrome/browser/sync_file_system/sync_file_system_service.cc
|
| diff --git a/chrome/browser/sync_file_system/sync_file_system_service.cc b/chrome/browser/sync_file_system/sync_file_system_service.cc
|
| index 5dcf3ff0b886826fcaeb89a250cc822fb737909c..28024c6770f26855f09bc771c27aefc3b6d7c9fa 100644
|
| --- a/chrome/browser/sync_file_system/sync_file_system_service.cc
|
| +++ b/chrome/browser/sync_file_system/sync_file_system_service.cc
|
| @@ -35,14 +35,14 @@
|
| #include "extensions/common/extension.h"
|
| #include "extensions/common/manifest_constants.h"
|
| #include "url/gurl.h"
|
| -#include "webkit/browser/fileapi/file_system_context.h"
|
| +#include "storage/browser/fileapi/file_system_context.h"
|
|
|
| using content::BrowserThread;
|
| using extensions::Extension;
|
| using extensions::ExtensionPrefs;
|
| using extensions::ExtensionRegistry;
|
| -using fileapi::FileSystemURL;
|
| -using fileapi::FileSystemURLSet;
|
| +using storage::FileSystemURL;
|
| +using storage::FileSystemURLSet;
|
|
|
| namespace sync_file_system {
|
|
|
| @@ -278,7 +278,7 @@ SyncFileSystemService::~SyncFileSystemService() {
|
| }
|
|
|
| void SyncFileSystemService::InitializeForApp(
|
| - fileapi::FileSystemContext* file_system_context,
|
| + storage::FileSystemContext* file_system_context,
|
| const GURL& app_origin,
|
| const SyncStatusCallback& callback) {
|
| DCHECK(local_service_);
|
| @@ -307,7 +307,7 @@ void SyncFileSystemService::DumpFiles(const GURL& origin,
|
|
|
| content::StoragePartition* storage_partition =
|
| content::BrowserContext::GetStoragePartitionForSite(profile_, origin);
|
| - fileapi::FileSystemContext* file_system_context =
|
| + storage::FileSystemContext* file_system_context =
|
| storage_partition->GetFileSystemContext();
|
| local_service_->MaybeInitializeFileSystemContext(
|
| origin, file_system_context,
|
|
|