Index: chrome/browser/profile_resetter/profile_resetter_browsertest.cc |
diff --git a/chrome/browser/profile_resetter/profile_resetter_browsertest.cc b/chrome/browser/profile_resetter/profile_resetter_browsertest.cc |
index 8c1b3210538d239b4f59a5daafe65aa0c2fb7450..8b0581b66687b35276b582c528ca6ed9139ad6a9 100644 |
--- a/chrome/browser/profile_resetter/profile_resetter_browsertest.cc |
+++ b/chrome/browser/profile_resetter/profile_resetter_browsertest.cc |
@@ -90,7 +90,7 @@ void RemoveCookieTester::AddCookie(const std::string& host, |
void RemoveCookieTester::GetCookieOnIOThread( |
net::URLRequestContextGetter* context_getter, |
const std::string& host) { |
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
+ DCHECK_CURRENTLY_ON(BrowserThread::IO); |
net::CookieStore* cookie_store = context_getter-> |
GetURLRequestContext()->cookie_store(); |
cookie_store->GetCookiesWithOptionsAsync( |
@@ -103,7 +103,7 @@ void RemoveCookieTester::SetCookieOnIOThread( |
net::URLRequestContextGetter* context_getter, |
const std::string& host, |
const std::string& definition) { |
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO)); |
+ DCHECK_CURRENTLY_ON(BrowserThread::IO); |
net::CookieStore* cookie_store = context_getter-> |
GetURLRequestContext()->cookie_store(); |
cookie_store->SetCookieWithOptionsAsync( |