| Index: webkit/browser/fileapi/cross_operation_delegate.h
|
| diff --git a/webkit/browser/fileapi/cross_operation_delegate.h b/webkit/browser/fileapi/cross_operation_delegate.h
|
| deleted file mode 100644
|
| index d001a5e619e4332ba45f31b3f15dc03db6a4d8f5..0000000000000000000000000000000000000000
|
| --- a/webkit/browser/fileapi/cross_operation_delegate.h
|
| +++ /dev/null
|
| @@ -1,123 +0,0 @@
|
| -// Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -#ifndef WEBKIT_BROWSER_FILEAPI_CROSS_OPERATION_DELEGATE_H_
|
| -#define WEBKIT_BROWSER_FILEAPI_CROSS_OPERATION_DELEGATE_H_
|
| -
|
| -#include <stack>
|
| -
|
| -#include "base/memory/ref_counted.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| -#include "webkit/browser/fileapi/recursive_operation_delegate.h"
|
| -
|
| -namespace webkit_blob {
|
| -class ShareableFileReference;
|
| -}
|
| -
|
| -namespace fileapi {
|
| -
|
| -class CopyOrMoveFileValidator;
|
| -
|
| -// A delegate class for recursive copy or move operations.
|
| -class CrossOperationDelegate
|
| - : public RecursiveOperationDelegate,
|
| - public base::SupportsWeakPtr<CrossOperationDelegate> {
|
| - public:
|
| - enum OperationType {
|
| - OPERATION_COPY,
|
| - OPERATION_MOVE
|
| - };
|
| -
|
| - CrossOperationDelegate(
|
| - FileSystemContext* file_system_context,
|
| - scoped_ptr<LocalFileSystemOperation> src_root_operation,
|
| - LocalFileSystemOperation* dest_root_operation,
|
| - const FileSystemURL& src_root,
|
| - const FileSystemURL& dest_root,
|
| - OperationType operation_type,
|
| - const StatusCallback& callback);
|
| - virtual ~CrossOperationDelegate();
|
| -
|
| - // RecursiveOperationDelegate overrides:
|
| - virtual void Run() OVERRIDE;
|
| - virtual void RunRecursively() OVERRIDE;
|
| - virtual void ProcessFile(const FileSystemURL& url,
|
| - const StatusCallback& callback) OVERRIDE;
|
| - virtual void ProcessDirectory(const FileSystemURL& url,
|
| - const StatusCallback& callback) OVERRIDE;
|
| -
|
| - using base::SupportsWeakPtr<CrossOperationDelegate>::AsWeakPtr;
|
| -
|
| - private:
|
| - struct URLPair {
|
| - URLPair(const FileSystemURL& src, const FileSystemURL& dest)
|
| - : src(src),
|
| - dest(dest) {
|
| - }
|
| - FileSystemURL src;
|
| - FileSystemURL dest;
|
| - };
|
| -
|
| - void DidTryCopyOrMoveFile(base::PlatformFileError error);
|
| - void DidTryRemoveDestRoot(base::PlatformFileError error);
|
| - void CopyOrMoveFile(
|
| - const URLPair& url_pair,
|
| - const StatusCallback& callback);
|
| - void DidCreateSnapshot(
|
| - const URLPair& url_pair,
|
| - const StatusCallback& callback,
|
| - base::PlatformFileError error,
|
| - const base::PlatformFileInfo& file_info,
|
| - const base::FilePath& platform_path,
|
| - const scoped_refptr<webkit_blob::ShareableFileReference>& file_ref);
|
| - void DidValidateFile(
|
| - const FileSystemURL& dest,
|
| - const StatusCallback& callback,
|
| - const base::PlatformFileInfo& file_info,
|
| - const base::FilePath& platform_path,
|
| - base::PlatformFileError error);
|
| - void DidFinishCopy(
|
| - const FileSystemURL& src,
|
| - const StatusCallback& callback,
|
| - base::PlatformFileError error);
|
| - void DidRemoveSourceForMove(
|
| - const StatusCallback& callback,
|
| - base::PlatformFileError error);
|
| -
|
| - FileSystemURL CreateDestURL(const FileSystemURL& src_url) const;
|
| -
|
| - // Create nested operations for recursive task.
|
| - // When the creation fails it fires callback_ with the
|
| - // error code and returns NULL.
|
| - //
|
| - // - NewDestOperation is basically a thin wrapper of
|
| - // RecursiveOperationDelegate::NewOperation().
|
| - // - NewSourceOperation also redirects the request to
|
| - // RecursiveOperationDelegate::NewOperation() **iff** same_file_system_
|
| - // is true.
|
| - // Otherwise it's for cross-filesystem operation and it needs a
|
| - // separate FileSystemOperationContext, so it creates a new operation
|
| - // which inherits context from src_root_operation_.
|
| - //
|
| - LocalFileSystemOperation* NewDestOperation();
|
| - LocalFileSystemOperation* NewSourceOperation();
|
| -
|
| - FileSystemURL src_root_;
|
| - FileSystemURL dest_root_;
|
| - bool same_file_system_;
|
| - OperationType operation_type_;
|
| - StatusCallback callback_;
|
| -
|
| - scoped_ptr<LocalFileSystemOperation> src_root_operation_;
|
| -
|
| - scoped_refptr<webkit_blob::ShareableFileReference> current_file_ref_;
|
| -
|
| - scoped_ptr<CopyOrMoveFileValidator> validator_;
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(CrossOperationDelegate);
|
| -};
|
| -
|
| -} // namespace fileapi
|
| -
|
| -#endif // WEBKIT_BROWSER_FILEAPI_CROSS_OPERATION_DELEGATE_H_
|
|
|