OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DANGEROUS
(Results
1 - 13
of
13
) sorted by null
/external/chromium/chrome/browser/ui/views/download/
download_item_view.h
111
DANGEROUS
152
// Whether we are in the
dangerous
mode.
153
bool IsDangerousMode() { return body_state_ ==
DANGEROUS
; }
155
// Reverts from
dangerous
mode to normal download mode.
162
// Sizes the
dangerous
download label to a minimum width available using 2
177
//
dangerous
download warning message (if any).
189
// The warning icon showns for
dangerous
downloads.
255
//
Dangerous
mode buttons.
259
//
Dangerous
mode label.
262
// Whether the
dangerous
mode label has been sized yet
[
all
...]
download_item_view.cc
51
//
dangerous
download message.
58
// The space between the Save and Discard buttons when prompting for a
dangerous
62
// The space on the left and right side of the
dangerous
download label.
251
if (download->safety_state() == DownloadItem::
DANGEROUS
) {
253
body_state_ =
DANGEROUS
;
254
drop_down_state_ =
DANGEROUS
;
292
// The
dangerous
download label text and icon are different
301
// The download file has
dangerous
file type (e.g.: an executable).
378
if (body_state_ ==
DANGEROUS
&&
449
// In
dangerous
mode we have to layout our buttons
[
all
...]
download_shelf_view.cc
401
download->safety_state() != DownloadItem::
DANGEROUS
) {
/external/chromium/chrome/browser/download/
download_item.cc
65
case DownloadItem::
DANGEROUS
:
66
return "
DANGEROUS
";
96
DownloadItem::
DANGEROUS
: DownloadItem::SAFE;
100
// danger type is set to DANGEROUS_URL since the risk of
dangerous
URL
101
// overweights that of
dangerous
file type.
105
//
dangerous
URL overweights
dangerous
file. We check
dangerous
URL first.
497
DCHECK_NE(
DANGEROUS
, safety_state());
download_item.h
61
DANGEROUS
,
62
DANGEROUS_BUT_VALIDATED //
Dangerous
but the user confirmed the download.
70
// A
dangerous
file to the system (e.g.: an executable or extension from
142
// Called when the user has validated the download of a
dangerous
file.
289
// but does not for
dangerous
downloads until the name is verified.
372
// Whether the download is considered potentially safe or
dangerous
373
// (executable files are typically considered
dangerous
).
384
//
Dangerous
downloads or ongoing downloads are given temporary names until
download_manager.cc
83
// Go through all downloads in downloads_.
Dangerous
ones we need to
93
if (download->safety_state() == DownloadItem::
DANGEROUS
&&
110
// At this point, all
dangerous
downloads have had their files removed
173
(item->safety_state() != DownloadItem::
DANGEROUS
))
358
// If the download is deemed
dangerous
, we'll use a temporary name for it.
501
// NOTE: The |Rename| below will be a no-op for
dangerous
files, as we're
607
// If the download is
dangerous
, but not yet validated, it's not ready for
609
if (download->safety_state() == DownloadItem::
DANGEROUS
)
637
DCHECK_NE(DownloadItem::
DANGEROUS
, download->safety_state());
[
all
...]
download_util.cc
532
// Load a language dependent height so that the
dangerous
download confirmation
630
if (download->safety_state() == DownloadItem::
DANGEROUS
) {
631
file_value->SetString("state", "
DANGEROUS
");
664
if (download->safety_state() == DownloadItem::
DANGEROUS
) {
665
file_value->SetString("state", "
DANGEROUS
");
885
if (danger_level ==
Dangerous
)
[
all
...]
/external/chromium/chrome/browser/ui/webui/
downloads_dom_handler.cc
132
} else if (download->safety_state() == DownloadItem::
DANGEROUS
) {
133
// We need to be notified when the user validates the
dangerous
download.
active_downloads_ui.cc
320
// Observe in progress and
dangerous
downloads.
322
item->safety_state() == DownloadItem::
DANGEROUS
) {
/external/chromium/chrome/browser/ui/gtk/download/
download_shelf_gtk.cc
211
download->safety_state() != DownloadItem::
DANGEROUS
) {
download_item_gtk.cc
46
// Padding on left and right of items in
dangerous
download prompt.
375
// Turns out the file path is "Unconfirmed %d.crdownload" for
dangerous
494
return get_download()->safety_state() == DownloadItem::
DANGEROUS
;
607
// The
dangerous
download label text is different for different cases.
613
// It's a
dangerous
file type (e.g.: an executable).
[
all
...]
/external/chromium/chrome/browser/automation/
automation_provider.cc
244
safety_state_to_string[DownloadItem::
DANGEROUS
] = std::string("
DANGEROUS
");
[
all
...]
/external/chromium/chrome/browser/ui/webui/chromeos/
imageburner_ui.cc
262
if (download->safety_state() == DownloadItem::
DANGEROUS
)
Completed in 1326 milliseconds