HomeSort by relevance Sort by last modified time
    Searched refs:DANGEROUS (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/chrome/browser/download/
download_extensions.cc 64 // Some files are dangerous on all platforms.
67 { "swf", DANGEROUS },
68 { "spl", DANGEROUS },
83 { "cfg", DANGEROUS },
90 { "dll", DANGEROUS },
91 { "drv", DANGEROUS },
94 { "grp", DANGEROUS },
99 { "ini", DANGEROUS },
105 { "local", DANGEROUS },
110 { "manifest", DANGEROUS },
    [all...]
download_extensions.h 17 DANGEROUS
chrome_download_manager_delegate.cc 164 // protection, mark it as potentially dangerous content until we are done
631 // We only mark the content as being dangerous if the download's safety state
632 // has not been set to DANGEROUS yet. We don't want to show two warnings.
642 case DownloadProtectionService::DANGEROUS:
download_target_determiner.cc 576 // where the download has already been deemed dangerous, or where the user is
586 // if there are prior visits and is considered dangerous otherwise.
663 // if one is available. A resumed download shouldn't cause a non-dangerous
664 // download to be considered dangerous upon resumption. Therefore the
675 // Dangerous downloads receive a random intermediate name that looks like:
806 // considered dangerous.
814 // Extensions that are not from the gallery are considered dangerous.
841 case download_util::DANGEROUS:
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
download_protection_service.h 45 DANGEROUS,
download_protection_service_unittest.cc 400 // Response to any requests will be DANGEROUS.
402 response.set_verdict(ClientDownloadResponse::DANGEROUS);
442 // With no referrer and just the bad url, should be marked DANGEROUS.
450 EXPECT_TRUE(IsResult(DownloadProtectionService::DANGEROUS));
463 EXPECT_TRUE(IsResult(DownloadProtectionService::DANGEROUS));
476 EXPECT_TRUE(IsResult(DownloadProtectionService::DANGEROUS));
595 // If the response is dangerous the result should also be marked as dangerous.
596 response.set_verdict(ClientDownloadResponse::DANGEROUS);
610 EXPECT_TRUE(IsResult(DownloadProtectionService::DANGEROUS));
    [all...]
download_feedback_service_unittest.cc 183 EXPECT_FALSE(WillStorePings(DownloadProtectionService::DANGEROUS, ok_size));
189 EXPECT_FALSE(WillStorePings(DownloadProtectionService::DANGEROUS, bad_size));
download_protection_service.cc 170 DownloadProtectionService::DANGEROUS :
414 // SAFE even if the server says it's dangerous to download this file.
418 } else if (response.verdict() == ClientDownloadResponse::DANGEROUS) {
420 result = DANGEROUS;
    [all...]
  /external/chromium_org/chrome/browser/resources/downloads/
downloads.js 351 this.danger_ = createElementWithClassName('div', 'show-dangerous');
372 // Buttons for the dangerous but not malicious case.
396 DANGEROUS: 'DANGEROUS',
401 * Explains why a download is in DANGEROUS state.
492 if (this.state_ == Download.States.DANGEROUS) {
615 * danger level of a file. Dangerous & malicious files are treated differently.
707 case Download.States.DANGEROUS:
743 * Tells the backend that the user chose to save a dangerous file.
753 * Tells the backend that the user chose to discard a dangerous file
    [all...]

Completed in 6337 milliseconds