blob: c21286c57b09599c75d08c317848118994acbd6d [file] [log] [blame]
// Copyright (c) 2012 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.
#include "content/public/browser/download_manager_delegate.h"
#include "base/threading/thread_task_runner_handle.h"
#include "content/public/browser/download_item.h"
namespace content {
void DownloadManagerDelegate::GetNextId(const DownloadIdCallback& callback) {
callback.Run(content::DownloadItem::kInvalidId);
}
bool DownloadManagerDelegate::DetermineDownloadTarget(
DownloadItem* item,
const DownloadTargetCallback& callback) {
return false;
}
bool DownloadManagerDelegate::ShouldOpenFileBasedOnExtension(
const base::FilePath& path) {
return false;
}
bool DownloadManagerDelegate::ShouldCompleteDownload(
DownloadItem* item,
const base::Closure& callback) {
return true;
}
bool DownloadManagerDelegate::ShouldOpenDownload(
DownloadItem* item, const DownloadOpenDelayedCallback& callback) {
return true;
}
bool DownloadManagerDelegate::IsMostRecentDownloadItemAtFilePath(
DownloadItem* download) {
return true;
}
bool DownloadManagerDelegate::GenerateFileHash() {
return false;
}
download::InProgressCache* DownloadManagerDelegate::GetInProgressCache() {
return nullptr;
}
std::string
DownloadManagerDelegate::ApplicationClientIdForFileScanning() const {
return std::string();
}
void DownloadManagerDelegate::CheckDownloadAllowed(
const ResourceRequestInfo::WebContentsGetter& web_contents_getter,
const GURL& url,
const std::string& request_method,
CheckDownloadAllowedCallback check_download_allowed_cb) {
base::ThreadTaskRunnerHandle::Get()->PostTask(
FROM_HERE, base::BindOnce(std::move(check_download_allowed_cb), true));
}
DownloadManagerDelegate::~DownloadManagerDelegate() {}
} // namespace content