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

  /external/chromium_org/chrome/browser/safe_browsing/
ui_manager.cc 39 SBThreatType threat_type; member in struct:SafeBrowsingUIManager::WhiteListedEntry
44 threat_type(SB_THREAT_TYPE_SAFE),
102 if (resource.threat_type != SB_THREAT_TYPE_SAFE) {
133 if (resource.threat_type != SB_THREAT_TYPE_SAFE &&
154 resource.is_subresource, resource.threat_type,
157 if (resource.threat_type != SB_THREAT_TYPE_SAFE) {
170 SBThreatType threat_type,
180 threat_type, post_data));
198 SBThreatType threat_type,
209 << threat_type; local
    [all...]
ping_manager.cc 66 SBThreatType threat_type,
70 threat_type);
101 SBThreatType threat_type) const {
102 DCHECK(threat_type == SB_THREAT_TYPE_URL_MALWARE ||
103 threat_type == SB_THREAT_TYPE_URL_PHISHING ||
104 threat_type == SB_THREAT_TYPE_BINARY_MALWARE_URL ||
105 threat_type == SB_THREAT_TYPE_CLIENT_SIDE_PHISHING_URL ||
106 threat_type == SB_THREAT_TYPE_CLIENT_SIDE_MALWARE_URL);
110 switch (threat_type) {
ui_manager.h 47 SBThreatType threat_type; member in struct:SafeBrowsingUIManager::UnsafeResource
122 SBThreatType threat_type,
143 SBThreatType threat_type,
safe_browsing_blocking_page.cc 213 (unsafe_resources[0].threat_type == SB_THREAT_TYPE_URL_MALWARE ||
214 unsafe_resources[0].threat_type ==
216 unsafe_resources[0].threat_type == SB_THREAT_TYPE_URL_PHISHING ||
217 unsafe_resources[0].threat_type ==
264 SBThreatType threat_type = resource.threat_type; local
265 if (threat_type == SB_THREAT_TYPE_URL_MALWARE ||
266 threat_type == SB_THREAT_TYPE_CLIENT_SIDE_MALWARE_URL) {
269 DCHECK(threat_type == SB_THREAT_TYPE_URL_PHISHING ||
270 threat_type == SB_THREAT_TYPE_CLIENT_SIDE_PHISHING_URL)
345 SBThreatType threat_type = unsafe_resources_[0].threat_type; local
365 SBThreatType threat_type = unsafe_resources_[0].threat_type; local
451 SBThreatType threat_type = unsafe_resources_[element_index].threat_type; local
985 SBThreatType threat_type = resource.threat_type; local
1088 SBThreatType threat_type = unsafe_resources_[0].threat_type; local
1271 SBThreatType threat_type = unsafe_resources_[0].threat_type; local
    [all...]
ping_manager.h 39 // to the user. |threat_type| should be one of the types known by
45 SBThreatType threat_type,
70 SBThreatType threat_type) const;
download_protection_service.cc 161 virtual bool IsDangerous(SBThreatType threat_type) const = 0;
167 void CheckDone(SBThreatType threat_type) {
169 IsDangerous(threat_type) ?
176 if (threat_type != SB_THREAT_TYPE_SAFE) {
182 this, threat_type));
186 void ReportMalware(SBThreatType threat_type) {
199 threat_type,
245 virtual bool IsDangerous(SBThreatType threat_type) const OVERRIDE {
246 return threat_type == SB_THREAT_TYPE_BINARY_MALWARE_URL;
250 SBThreatType threat_type) OVERRIDE
251 CheckDone(threat_type); variable
    [all...]
database_manager.h 103 SBThreatType threat_type) {}
107 SBThreatType threat_type) {}
client_side_detection_host.cc 419 if (resource.threat_type != SB_THREAT_TYPE_URL_PHISHING &&
420 resource.threat_type != SB_THREAT_TYPE_URL_MALWARE)
595 resource.threat_type = SB_THREAT_TYPE_CLIENT_SIDE_PHISHING_URL;
626 resource.threat_type = SB_THREAT_TYPE_CLIENT_SIDE_MALWARE_URL;
safe_browsing_blocking_page_test.cc 115 void SetURLThreatType(const GURL& url, SBThreatType threat_type) {
116 badurls[url.spec()] = threat_type;
461 void SetURLThreatType(const GURL& url, SBThreatType threat_type) {
467 service->fake_database_manager()->SetURLThreatType(url, threat_type);
470 // Adds a safebrowsing result of type |threat_type| to the fake safebrowsing
472 GURL SetupWarningAndNavigate(SBThreatType threat_type) {
474 SetURLThreatType(url, threat_type);
    [all...]
client_side_detection_host_unittest.cc 352 EXPECT_EQ(resource.threat_type, csd_host_->unsafe_resource_->threat_type);
365 resource.threat_type = SB_THREAT_TYPE_URL_MALWARE;
398 resource.threat_type = SB_THREAT_TYPE_URL_MALWARE;
573 EXPECT_EQ(SB_THREAT_TYPE_CLIENT_SIDE_PHISHING_URL, resource.threat_type);
663 EXPECT_EQ(SB_THREAT_TYPE_CLIENT_SIDE_PHISHING_URL, resource.threat_type);
816 EXPECT_EQ(SB_THREAT_TYPE_CLIENT_SIDE_MALWARE_URL, resource.threat_type);
    [all...]
safe_browsing_blocking_page_unittest.cc 116 (unsafe_resources[0].threat_type == SB_THREAT_TYPE_URL_MALWARE ||
117 unsafe_resources[0].threat_type == SB_THREAT_TYPE_URL_PHISHING)) {
242 resource->threat_type = SB_THREAT_TYPE_URL_MALWARE;
safe_browsing_test.cc 350 SBThreatType threat_type) OVERRIDE {
354 threat_type == SB_THREAT_TYPE_SAFE);
safe_browsing_service_browsertest.cc 362 arg.threat_type != SB_THREAT_TYPE_SAFE);
648 SBThreatType threat_type) OVERRIDE {
649 threat_type_ = threat_type;
    [all...]
database_manager.cc 64 const SBThreatType threat_type,
68 threat_type);
    [all...]
browser_feature_extractor.cc 307 static_cast<double>(info.unsafe_resource->threat_type),
download_protection_service_unittest.cc 175 ACTION_P(CheckDownloadUrlDone, threat_type) {
184 check->url_results[i] = threat_type;
    [all...]
browser_feature_extractor_unittest.cc 575 browse_info_->unsafe_resource->threat_type = SB_THREAT_TYPE_URL_MALWARE;
malware_details_unittest.cc 229 resource->threat_type = SB_THREAT_TYPE_URL_MALWARE;
  /external/chromium_org/chrome/browser/renderer_host/
safe_browsing_resource_throttle.cc 83 const GURL& url, SBThreatType threat_type) {
90 threat_type_ = threat_type;
93 if (threat_type == SB_THREAT_TYPE_SAFE) {
117 resource.threat_type = threat_type;
  /external/chromium_org/chrome/browser/prerender/
prerender_browsertest.cc 677 void SetThreatTypeForUrl(const GURL& url, SBThreatType threat_type) {
679 threat_type_ = threat_type;
    [all...]

Completed in 277 milliseconds