| Index: components/safe_browsing/base_blocking_page.cc
 | 
| diff --git a/components/safe_browsing/base_blocking_page.cc b/components/safe_browsing/base_blocking_page.cc
 | 
| index 184a1b2bbb8d7c988a55deab11661c1f7481563a..674fd63ca2eaeb9e41a932b202ca96ec4b963197 100644
 | 
| --- a/components/safe_browsing/base_blocking_page.cc
 | 
| +++ b/components/safe_browsing/base_blocking_page.cc
 | 
| @@ -283,14 +283,14 @@ BaseBlockingPage::GetInterstitialReason(
 | 
|      const BaseUIManager::UnsafeResource& resource = *iter;
 | 
|      safe_browsing::SBThreatType threat_type = resource.threat_type;
 | 
|      if (threat_type == SB_THREAT_TYPE_URL_MALWARE ||
 | 
| -        threat_type == SB_THREAT_TYPE_CLIENT_SIDE_MALWARE_URL) {
 | 
| +        threat_type == SB_THREAT_TYPE_URL_CLIENT_SIDE_MALWARE) {
 | 
|        return BaseSafeBrowsingErrorUI::SB_REASON_MALWARE;
 | 
|      } else if (threat_type == SB_THREAT_TYPE_URL_UNWANTED) {
 | 
|        harmful = true;
 | 
|      } else {
 | 
|        DCHECK(threat_type == SB_THREAT_TYPE_URL_PHISHING ||
 | 
| -             threat_type == SB_THREAT_TYPE_CLIENT_SIDE_PHISHING_URL ||
 | 
| -             threat_type == SB_THREAT_TYPE_PASSWORD_PROTECTION_PHISHING_URL);
 | 
| +             threat_type == SB_THREAT_TYPE_URL_CLIENT_SIDE_PHISHING ||
 | 
| +             threat_type == SB_THREAT_TYPE_URL_PASSWORD_PROTECTION_PHISHING);
 | 
|      }
 | 
|    }
 | 
|  
 | 
| 
 |