diff options
Diffstat (limited to 'chrome/browser/metrics/thread_watcher_android.cc')
-rw-r--r-- | chrome/browser/metrics/thread_watcher_android.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/metrics/thread_watcher_android.cc b/chrome/browser/metrics/thread_watcher_android.cc index 74aab6a..67b92f0 100644 --- a/chrome/browser/metrics/thread_watcher_android.cc +++ b/chrome/browser/metrics/thread_watcher_android.cc @@ -24,7 +24,7 @@ bool g_application_has_stopped = false; void OnApplicationStateChange( base::android::ApplicationState application_state) { - DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); + DCHECK_CURRENTLY_ON(content::BrowserThread::UI); if (application_state == base::android::APPLICATION_STATE_HAS_STOPPED_ACTIVITIES) { g_application_has_stopped = true; |