| Index: chrome/browser/ui/passwords/password_manager_presenter.cc
|
| diff --git a/chrome/browser/ui/passwords/password_manager_presenter.cc b/chrome/browser/ui/passwords/password_manager_presenter.cc
|
| index b22aca2f87adbd1b84506c48c31bcd1faa134b02..1e7c1d041e4629e35e0c473e2cbe9133e6865f47 100644
|
| --- a/chrome/browser/ui/passwords/password_manager_presenter.cc
|
| +++ b/chrome/browser/ui/passwords/password_manager_presenter.cc
|
| @@ -14,6 +14,7 @@
|
| #include "chrome/browser/password_manager/password_manager_util.h"
|
| #include "chrome/browser/password_manager/password_store_factory.h"
|
| #include "chrome/browser/password_manager/sync_metrics.h"
|
| +#include "chrome/browser/profiles/profile.h"
|
| #include "chrome/browser/ui/passwords/password_ui_view.h"
|
| #include "chrome/common/chrome_switches.h"
|
| #include "chrome/common/url_constants.h"
|
| @@ -69,7 +70,8 @@ void PasswordManagerPresenter::OnLoginsChanged(
|
|
|
| PasswordStore* PasswordManagerPresenter::GetPasswordStore() {
|
| return PasswordStoreFactory::GetForProfile(password_view_->GetProfile(),
|
| - Profile::EXPLICIT_ACCESS).get();
|
| + ServiceAccessType::EXPLICIT_ACCESS)
|
| + .get();
|
| }
|
|
|
| void PasswordManagerPresenter::UpdatePasswordLists() {
|
|
|