blob: e868c1ba874e46c900459d6cf0c9e19c1c658a37 [file] [log] [blame]
// Copyright 2019 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 CHROME_BROWSER_ASH_FILE_MANAGER_WEB_FILE_TASKS_H_
#define CHROME_BROWSER_ASH_FILE_MANAGER_WEB_FILE_TASKS_H_
#include <vector>
#include "chrome/browser/ash/file_manager/file_tasks.h"
class Profile;
namespace storage {
class FileSystemURL;
}
namespace file_manager {
namespace file_tasks {
// Executes the specified web task.
void ExecuteWebTask(Profile* profile,
const TaskDescriptor& task,
const std::vector<storage::FileSystemURL>& file_system_urls,
FileTaskFinishedCallback done);
} // namespace file_tasks
} // namespace file_manager
#endif // CHROME_BROWSER_ASH_FILE_MANAGER_WEB_FILE_TASKS_H_