#ifndef STORAGE_BROWSER_FILE_SYSTEM_COPY_OR_MOVE_OPERATION_DELEGATE_H_
#define STORAGE_BROWSER_FILE_SYSTEM_COPY_OR_MOVE_OPERATION_DELEGATE_H_
#include <stdint.h>
#include <map>
#include <memory>
#include "base/component_export.h"
#include "base/functional/callback_forward.h"
#include "base/memory/scoped_refptr.h"
#include "base/memory/weak_ptr.h"
#include "base/time/time.h"
#include "storage/browser/file_system/copy_or_move_hook_delegate.h"
#include "storage/browser/file_system/recursive_operation_delegate.h"
namespace net {
class DrainableIOBuffer;
class IOBufferWithSize;
}
namespace storage {
class FileStreamReader;
class FileStreamWriter;
enum class FlushPolicy;
enum class FlushMode;
class COMPONENT_EXPORT(STORAGE_BROWSER) CopyOrMoveOperationDelegate final
: public RecursiveOperationDelegate { … };
}
#endif