Index: chrome/browser/chromeos/settings/cros_settings_unittest.cc |
diff --git a/chrome/browser/chromeos/settings/cros_settings_unittest.cc b/chrome/browser/chromeos/settings/cros_settings_unittest.cc |
index b0714f0f29697083fec4b6279f82fa2ffde3a65d..45ebe62b085cd8e5a29e70d0f8fd379d98e6b061 100644 |
--- a/chrome/browser/chromeos/settings/cros_settings_unittest.cc |
+++ b/chrome/browser/chromeos/settings/cros_settings_unittest.cc |
@@ -43,7 +43,7 @@ class CrosSettingsTest : public testing::Test { |
} |
void FetchPref(const std::string& pref) { |
- DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); |
+ DCHECK_CURRENTLY_ON(content::BrowserThread::UI); |
if (expected_props_.find(pref) == expected_props_.end()) |
return; |
@@ -65,7 +65,7 @@ class CrosSettingsTest : public testing::Test { |
} |
void SetPref(const std::string& pref_name, const base::Value* value) { |
- DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); |
+ DCHECK_CURRENTLY_ON(content::BrowserThread::UI); |
settings_.Set(pref_name, *value); |
} |