| Index: chrome/browser/android/cookies/cookies_fetcher.cc
|
| diff --git a/chrome/browser/android/cookies/cookies_fetcher.cc b/chrome/browser/android/cookies/cookies_fetcher.cc
|
| index 25f55e7f19332de261d280ea13e2ec36b7b889fb..8197f371d57e23477bf0a6dabdb10b33f56c1c96 100644
|
| --- a/chrome/browser/android/cookies/cookies_fetcher.cc
|
| +++ b/chrome/browser/android/cookies/cookies_fetcher.cc
|
| @@ -49,7 +49,7 @@ void CookiesFetcher::PersistCookies(JNIEnv* env, jobject obj) {
|
|
|
| void CookiesFetcher::PersistCookiesInternal(
|
| net::URLRequestContextGetter* getter) {
|
| - DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::IO));
|
| + DCHECK_CURRENTLY_ON(content::BrowserThread::IO);
|
|
|
| net::CookieStore* store = getter->GetURLRequestContext()->cookie_store();
|
|
|
| @@ -142,7 +142,7 @@ void CookiesFetcher::RestoreCookies(JNIEnv* env,
|
| void CookiesFetcher::RestoreToCookieJarInternal(
|
| net::URLRequestContextGetter* getter,
|
| const net::CanonicalCookie& cookie) {
|
| - DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::IO));
|
| + DCHECK_CURRENTLY_ON(content::BrowserThread::IO);
|
|
|
| net::CookieStore* store = getter->GetURLRequestContext()->cookie_store();
|
|
|
|
|