blob: 9fa1c4622b4faae32dc1845a7f7c23a3ff13f361 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
// Copyright 2015 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 "components/history/content/browser/download_constants_utils.h"
#include "base/logging.h"
#include "components/history/core/browser/download_constants.h"
namespace history {
content::DownloadItem::DownloadState ToContentDownloadState(
DownloadState state) {
switch (state) {
case DownloadState::IN_PROGRESS:
return content::DownloadItem::IN_PROGRESS;
case DownloadState::COMPLETE:
return content::DownloadItem::COMPLETE;
case DownloadState::CANCELLED:
return content::DownloadItem::CANCELLED;
case DownloadState::INTERRUPTED:
return content::DownloadItem::INTERRUPTED;
case DownloadState::INVALID:
case DownloadState::BUG_140687:
NOTREACHED();
return content::DownloadItem::MAX_DOWNLOAD_STATE;
}
NOTREACHED();
return content::DownloadItem::MAX_DOWNLOAD_STATE;
}
DownloadState ToHistoryDownloadState(
content::DownloadItem::DownloadState state) {
switch (state) {
case content::DownloadItem::IN_PROGRESS:
return DownloadState::IN_PROGRESS;
case content::DownloadItem::COMPLETE:
return DownloadState::COMPLETE;
case content::DownloadItem::CANCELLED:
return DownloadState::CANCELLED;
case content::DownloadItem::INTERRUPTED:
return DownloadState::INTERRUPTED;
case content::DownloadItem::MAX_DOWNLOAD_STATE:
NOTREACHED();
return DownloadState::INVALID;
}
NOTREACHED();
return DownloadState::INVALID;
}
content::DownloadDangerType ToContentDownloadDangerType(
DownloadDangerType danger_type) {
switch (danger_type) {
case DownloadDangerType::NOT_DANGEROUS:
return content::DOWNLOAD_DANGER_TYPE_NOT_DANGEROUS;
case DownloadDangerType::DANGEROUS_FILE:
return content::DOWNLOAD_DANGER_TYPE_DANGEROUS_FILE;
case DownloadDangerType::DANGEROUS_URL:
return content::DOWNLOAD_DANGER_TYPE_DANGEROUS_URL;
case DownloadDangerType::DANGEROUS_CONTENT:
return content::DOWNLOAD_DANGER_TYPE_DANGEROUS_CONTENT;
case DownloadDangerType::MAYBE_DANGEROUS_CONTENT:
return content::DOWNLOAD_DANGER_TYPE_MAYBE_DANGEROUS_CONTENT;
case DownloadDangerType::UNCOMMON_CONTENT:
return content::DOWNLOAD_DANGER_TYPE_UNCOMMON_CONTENT;
case DownloadDangerType::USER_VALIDATED:
return content::DOWNLOAD_DANGER_TYPE_USER_VALIDATED;
case DownloadDangerType::DANGEROUS_HOST:
return content::DOWNLOAD_DANGER_TYPE_DANGEROUS_HOST;
case DownloadDangerType::POTENTIALLY_UNWANTED:
return content::DOWNLOAD_DANGER_TYPE_POTENTIALLY_UNWANTED;
case DownloadDangerType::INVALID:
NOTREACHED();
return content::DOWNLOAD_DANGER_TYPE_MAX;
}
NOTREACHED();
return content::DOWNLOAD_DANGER_TYPE_MAX;
}
DownloadDangerType ToHistoryDownloadDangerType(
content::DownloadDangerType danger_type) {
switch (danger_type) {
case content::DOWNLOAD_DANGER_TYPE_NOT_DANGEROUS:
return DownloadDangerType::NOT_DANGEROUS;
case content::DOWNLOAD_DANGER_TYPE_DANGEROUS_FILE:
return DownloadDangerType::DANGEROUS_FILE;
case content::DOWNLOAD_DANGER_TYPE_DANGEROUS_URL:
return DownloadDangerType::DANGEROUS_URL;
case content::DOWNLOAD_DANGER_TYPE_DANGEROUS_CONTENT:
return DownloadDangerType::DANGEROUS_CONTENT;
case content::DOWNLOAD_DANGER_TYPE_MAYBE_DANGEROUS_CONTENT:
return DownloadDangerType::MAYBE_DANGEROUS_CONTENT;
case content::DOWNLOAD_DANGER_TYPE_UNCOMMON_CONTENT:
return DownloadDangerType::UNCOMMON_CONTENT;
case content::DOWNLOAD_DANGER_TYPE_USER_VALIDATED:
return DownloadDangerType::USER_VALIDATED;
case content::DOWNLOAD_DANGER_TYPE_DANGEROUS_HOST:
return DownloadDangerType::DANGEROUS_HOST;
case content::DOWNLOAD_DANGER_TYPE_POTENTIALLY_UNWANTED:
return DownloadDangerType::POTENTIALLY_UNWANTED;
default:
NOTREACHED();
return DownloadDangerType::INVALID;
}
}
content::DownloadInterruptReason ToContentDownloadInterruptReason(
DownloadInterruptReason interrupt_reason) {
return static_cast<content::DownloadInterruptReason>(interrupt_reason);
}
DownloadInterruptReason ToHistoryDownloadInterruptReason(
content::DownloadInterruptReason interrupt_reason) {
return static_cast<DownloadInterruptReason>(interrupt_reason);
}
uint32_t ToContentDownloadId(DownloadId id) {
DCHECK_NE(id, kInvalidDownloadId);
return static_cast<uint32_t>(id);
}
DownloadId ToHistoryDownloadId(uint32_t id) {
DCHECK_NE(id, content::DownloadItem::kInvalidId);
return static_cast<DownloadId>(id);
}
} // namespace history
|