| Index: webkit/fileapi/sandbox_mount_point_provider.cc
|
| diff --git a/webkit/fileapi/sandbox_mount_point_provider.cc b/webkit/fileapi/sandbox_mount_point_provider.cc
|
| index c0b65f2a1087e70dca05a83d5b837553cf47e973..1b2dc96ed4efe038765230289427eb2ca4621328 100644
|
| --- a/webkit/fileapi/sandbox_mount_point_provider.cc
|
| +++ b/webkit/fileapi/sandbox_mount_point_provider.cc
|
| @@ -16,6 +16,7 @@
|
| #include "base/metrics/histogram.h"
|
| #include "googleurl/src/gurl.h"
|
| #include "net/base/net_util.h"
|
| +#include "webkit/fileapi/file_system_callback_dispatcher.h"
|
| #include "webkit/fileapi/file_system_operation.h"
|
| #include "webkit/fileapi/file_system_operation_context.h"
|
| #include "webkit/fileapi/file_system_options.h"
|
| @@ -410,6 +411,17 @@ FileSystemFileUtil* SandboxMountPointProvider::GetFileUtil() {
|
| return sandbox_file_util_.get();
|
| }
|
|
|
| +FileSystemOperationInterface*
|
| +SandboxMountPointProvider::CreateFileSystemOperation(
|
| + const GURL& origin_url,
|
| + FileSystemType file_system_type,
|
| + const FilePath& virtual_path,
|
| + scoped_ptr<FileSystemCallbackDispatcher> dispatcher,
|
| + base::MessageLoopProxy* file_proxy,
|
| + FileSystemContext* context) const {
|
| + return new FileSystemOperation(dispatcher.Pass(), file_proxy, context);
|
| +}
|
| +
|
| FilePath SandboxMountPointProvider::old_base_path() const {
|
| return profile_path_.Append(kOldFileSystemDirectory);
|
| }
|
|
|