blob: d4d8fa2a72f5eb985b9277afe9a9c6b638e9cd55 [file] [log] [blame]
// Copyright 2016 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 "chrome/browser/download/download_target_info.h"
#include "components/safe_browsing/content/common/file_type_policies.h"
DownloadTargetInfo::DownloadTargetInfo()
: target_disposition(download::DownloadItem::TARGET_DISPOSITION_OVERWRITE),
danger_type(download::DOWNLOAD_DANGER_TYPE_NOT_DANGEROUS),
danger_level(safe_browsing::DownloadFileType::NOT_DANGEROUS),
is_filetype_handled_safely(false),
result(download::DOWNLOAD_INTERRUPT_REASON_NONE),
mixed_content_status(
download::DownloadItem::MixedContentStatus::UNKNOWN) {}
DownloadTargetInfo::~DownloadTargetInfo() {}