Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
|
svaldez
2016/10/28 17:29:36
2016
asanka
2016/11/07 19:50:15
Done.
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/download/download_target_info.h" | |
| 6 | |
| 7 #include "chrome/common/safe_browsing/file_type_policies.h" | |
| 8 | |
| 9 DownloadTargetInfo::DownloadTargetInfo() | |
| 10 : target_disposition(content::DownloadItem::TARGET_DISPOSITION_OVERWRITE), | |
| 11 danger_type(content::DOWNLOAD_DANGER_TYPE_NOT_DANGEROUS), | |
| 12 danger_level(safe_browsing::DownloadFileType::NOT_DANGEROUS), | |
| 13 is_filetype_handled_safely(false), | |
| 14 result(DownloadTargetResult::SUCCESS) {} | |
| 15 | |
| 16 DownloadTargetInfo::~DownloadTargetInfo() {} | |
| OLD | NEW |