Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(400)

Side by Side Diff: chrome/browser/download/download_target_info.cc

Issue 2453633006: [downloads] Move platform specific code out of DownloadTargetDeterminer. (Closed)
Patch Set: . Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
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(content::DOWNLOAD_INTERRUPT_REASON_NONE) {}
15
16 DownloadTargetInfo::~DownloadTargetInfo() {}
OLDNEW
« no previous file with comments | « chrome/browser/download/download_target_info.h ('k') | chrome/browser/download/download_test_file_activity_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698