| Index: chrome/browser/sync/glue/password_data_type_controller.cc
|
| diff --git a/chrome/browser/sync/glue/password_data_type_controller.cc b/chrome/browser/sync/glue/password_data_type_controller.cc
|
| index 3681b04f664942af6b0db68437f8ad24d5b4fa5d..683de68f423dbecdadf2787ec0678a3288e7364b 100644
|
| --- a/chrome/browser/sync/glue/password_data_type_controller.cc
|
| +++ b/chrome/browser/sync/glue/password_data_type_controller.cc
|
| @@ -42,7 +42,7 @@ bool PasswordDataTypeController::PostTaskOnBackendThread(
|
| const tracked_objects::Location& from_here,
|
| const base::Closure& task) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| - if (!password_store_)
|
| + if (!password_store_.get())
|
| return false;
|
| return password_store_->ScheduleTask(task);
|
| }
|
| @@ -52,7 +52,7 @@ bool PasswordDataTypeController::StartModels() {
|
| DCHECK_EQ(MODEL_STARTING, state());
|
| password_store_ = PasswordStoreFactory::GetForProfile(
|
| profile_, Profile::EXPLICIT_ACCESS);
|
| - return !!password_store_;
|
| + return !!password_store_.get();
|
| }
|
|
|
| } // namespace browser_sync
|
|
|