| Index: chrome/browser/safe_browsing/safe_browsing_service.h
|
| diff --git a/chrome/browser/safe_browsing/safe_browsing_service.h b/chrome/browser/safe_browsing/safe_browsing_service.h
|
| index 5720e004fcea2f082dccc4613ab81524f2d568f0..487be29296b4f1fab966d1250234406db5fdaf07 100644
|
| --- a/chrome/browser/safe_browsing/safe_browsing_service.h
|
| +++ b/chrome/browser/safe_browsing/safe_browsing_service.h
|
| @@ -104,7 +104,7 @@ class SafeBrowsingService
|
|
|
| safe_browsing::ClientSideDetectionService*
|
| safe_browsing_detection_service() const {
|
| - DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
|
| + DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
| return csd_service_.get();
|
| }
|
|
|
| @@ -112,7 +112,7 @@ class SafeBrowsingService
|
| // is destroyed.
|
| safe_browsing::DownloadProtectionService*
|
| download_protection_service() const {
|
| - DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
|
| + DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
| return download_service_.get();
|
| }
|
|
|
|
|