| Index: webkit/fileapi/file_system_context.cc
|
| diff --git a/webkit/fileapi/file_system_context.cc b/webkit/fileapi/file_system_context.cc
|
| index 962eff4e60d2de1dfe5750d16afaa8b0296b3607..1390857065084755b3fc50f259ea682bdf6573a2 100644
|
| --- a/webkit/fileapi/file_system_context.cc
|
| +++ b/webkit/fileapi/file_system_context.cc
|
| @@ -20,6 +20,7 @@
|
| #include "webkit/fileapi/isolated_mount_point_provider.h"
|
| #include "webkit/fileapi/sandbox_mount_point_provider.h"
|
| #include "webkit/fileapi/syncable/local_file_change_tracker.h"
|
| +#include "webkit/fileapi/syncable/local_file_sync_context.h"
|
| #include "webkit/fileapi/syncable/syncable_file_system_util.h"
|
| #include "webkit/fileapi/test_mount_point_provider.h"
|
| #include "webkit/quota/quota_manager.h"
|
| @@ -289,6 +290,11 @@ void FileSystemContext::SetLocalFileChangeTracker(
|
| task_runners_->file_task_runner());
|
| }
|
|
|
| +void FileSystemContext::set_sync_context(
|
| + LocalFileSyncContext* sync_context) {
|
| + sync_context_ = sync_context;
|
| +}
|
| +
|
| FileSystemContext::~FileSystemContext() {}
|
|
|
| void FileSystemContext::DeleteOnCorrectThread() const {
|
|
|