Index: chrome/browser/extensions/extension_gcm_app_handler_unittest.cc |
diff --git a/chrome/browser/extensions/extension_gcm_app_handler_unittest.cc b/chrome/browser/extensions/extension_gcm_app_handler_unittest.cc |
index d5d8f898e15d1f0de3181021925e237e2d0ec284..5355ee0be636bed73e9c5319a4da052aa36e8220 100644 |
--- a/chrome/browser/extensions/extension_gcm_app_handler_unittest.cc |
+++ b/chrome/browser/extensions/extension_gcm_app_handler_unittest.cc |
@@ -98,13 +98,13 @@ class Waiter { |
private: |
void PumpIOLoopCompleted() { |
- DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); |
+ DCHECK_CURRENTLY_ON(content::BrowserThread::UI); |
SignalCompleted(); |
} |
void OnIOLoopPump() { |
- DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::IO)); |
+ DCHECK_CURRENTLY_ON(content::BrowserThread::IO); |
content::BrowserThread::PostTask( |
content::BrowserThread::IO, |
@@ -113,7 +113,7 @@ class Waiter { |
} |
void OnIOLoopPumpCompleted() { |
- DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::IO)); |
+ DCHECK_CURRENTLY_ON(content::BrowserThread::IO); |
content::BrowserThread::PostTask( |
content::BrowserThread::UI, |