Index: chrome/browser/net/nss_context_linux.cc |
diff --git a/chrome/browser/net/nss_context_linux.cc b/chrome/browser/net/nss_context_linux.cc |
index 9021a908423124c46d55ebdc8620811468abf9a1..8e617157251ffcfc415b4294a24ef8e12a8c3569 100644 |
--- a/chrome/browser/net/nss_context_linux.cc |
+++ b/chrome/browser/net/nss_context_linux.cc |
@@ -14,14 +14,14 @@ net::NSSCertDatabase* g_nss_cert_database = NULL; |
crypto::ScopedPK11Slot GetPublicNSSKeySlotForResourceContext( |
content::ResourceContext* context) { |
- DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::IO)); |
+ DCHECK_CURRENTLY_ON(content::BrowserThread::IO); |
return crypto::ScopedPK11Slot(crypto::GetPersistentNSSKeySlot()); |
} |
crypto::ScopedPK11Slot GetPrivateNSSKeySlotForResourceContext( |
content::ResourceContext* context, |
const base::Callback<void(crypto::ScopedPK11Slot)>& callback) { |
- DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::IO)); |
+ DCHECK_CURRENTLY_ON(content::BrowserThread::IO); |
return crypto::ScopedPK11Slot(crypto::GetPersistentNSSKeySlot()); |
} |