Index: chrome/browser/android/provider/run_on_ui_thread_blocking.h |
diff --git a/chrome/browser/android/provider/run_on_ui_thread_blocking.h b/chrome/browser/android/provider/run_on_ui_thread_blocking.h |
index 04ea537928c7d2b7cc03b86df6084e2f61bc6391..b43410e13091336868d32c3e8f5db8be38c2b50b 100644 |
--- a/chrome/browser/android/provider/run_on_ui_thread_blocking.h |
+++ b/chrome/browser/android/provider/run_on_ui_thread_blocking.h |
@@ -30,7 +30,7 @@ class RunOnUIThreadBlocking { |
template <typename Signature> |
static void RunOnUIThread(base::Callback<Signature> runnable, |
base::WaitableEvent* finished) { |
- DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); |
+ DCHECK_CURRENTLY_ON(content::BrowserThread::UI); |
runnable.Run(); |
finished->Signal(); |
} |