| Index: chrome/browser/ui/webui/options/password_manager_handler.cc
|
| diff --git a/chrome/browser/ui/webui/options/password_manager_handler.cc b/chrome/browser/ui/webui/options/password_manager_handler.cc
|
| index 50c904bedb6b107e01a4296d0cb35ed22c284188..7333d89c14ecd05ddfeadab88c792ed44a92e324 100644
|
| --- a/chrome/browser/ui/webui/options/password_manager_handler.cc
|
| +++ b/chrome/browser/ui/webui/options/password_manager_handler.cc
|
| @@ -20,7 +20,7 @@
|
| #include "grit/generated_resources.h"
|
| #include "net/base/net_util.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| -#include "webkit/glue/password_form.h"
|
| +#include "webkit/forms/password_form.h"
|
|
|
| PasswordManagerHandler::PasswordManagerHandler()
|
| : ALLOW_THIS_IN_INITIALIZER_LIST(populater_(this)),
|
| @@ -252,7 +252,7 @@ void PasswordManagerHandler::PasswordListPopulater::Populate() {
|
| void PasswordManagerHandler::PasswordListPopulater::
|
| OnPasswordStoreRequestDone(
|
| CancelableRequestProvider::Handle handle,
|
| - const std::vector<webkit_glue::PasswordForm*>& result) {
|
| + const std::vector<webkit::forms::PasswordForm*>& result) {
|
| DCHECK_EQ(pending_login_query_, handle);
|
| pending_login_query_ = 0;
|
| page_->password_list_.reset();
|
| @@ -281,7 +281,7 @@ void PasswordManagerHandler::PasswordExceptionListPopulater::Populate() {
|
| void PasswordManagerHandler::PasswordExceptionListPopulater::
|
| OnPasswordStoreRequestDone(
|
| CancelableRequestProvider::Handle handle,
|
| - const std::vector<webkit_glue::PasswordForm*>& result) {
|
| + const std::vector<webkit::forms::PasswordForm*>& result) {
|
| DCHECK_EQ(pending_login_query_, handle);
|
| pending_login_query_ = 0;
|
| page_->password_exception_list_.reset();
|
|
|