| Index: chrome/browser/password_manager/password_store_mac.cc
|
| diff --git a/chrome/browser/password_manager/password_store_mac.cc b/chrome/browser/password_manager/password_store_mac.cc
|
| index f548ff295b518e108dfde8d589f4dc6bed075f88..80a18a721da9a42fd858605acb073e070afe6cc4 100644
|
| --- a/chrome/browser/password_manager/password_store_mac.cc
|
| +++ b/chrome/browser/password_manager/password_store_mac.cc
|
| @@ -922,7 +922,7 @@ PasswordStoreMac::~PasswordStoreMac() {}
|
|
|
| bool PasswordStoreMac::Init(
|
| const syncer::SyncableService::StartSyncFlare& flare) {
|
| - DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
|
| + DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
| thread_.reset(new base::Thread("Chrome_PasswordStore_Thread"));
|
|
|
| if (!thread_->Start()) {
|
| @@ -944,7 +944,7 @@ void PasswordStoreMac::InitOnBackgroundThread() {
|
| }
|
|
|
| void PasswordStoreMac::Shutdown() {
|
| - DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
|
| + DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
|
| password_manager::PasswordStore::Shutdown();
|
| thread_->Stop();
|
| }
|
|
|