diff options
Diffstat (limited to 'chrome/browser/password_manager/password_manager.cc')
-rw-r--r-- | chrome/browser/password_manager/password_manager.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/password_manager/password_manager.cc b/chrome/browser/password_manager/password_manager.cc index b558bf94..e09aa08 100644 --- a/chrome/browser/password_manager/password_manager.cc +++ b/chrome/browser/password_manager/password_manager.cc @@ -8,6 +8,7 @@ #include "app/resource_bundle.h" #include "base/stl_util-inl.h" #include "base/string_util.h" +#include "chrome/browser/password_manager/password_form_manager.h" #include "chrome/browser/profile.h" #include "chrome/browser/tab_contents/tab_contents.h" #include "chrome/common/notification_registrar.h" @@ -234,8 +235,9 @@ void PasswordManager::Autofill( return; } default: - if (observer_) + if (observer_) { observer_->OnAutofillDataAvailable(preferred_match->username_value, preferred_match->password_value); + } } } |