Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4686)

Unified Diff: chrome/browser/ui/webui/options/password_manager_handler.h

Issue 23742004: Move PasswordForm from //content to //autofill. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_password_form_conversion_utils
Patch Set: Rebase Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/options/password_manager_handler.h
diff --git a/chrome/browser/ui/webui/options/password_manager_handler.h b/chrome/browser/ui/webui/options/password_manager_handler.h
index 22de6d61d1a0095b40ca0a533901a20d750c3d9d..29c667a846e9e248fa6a7b923a7cccf4c6fa4a8c 100644
--- a/chrome/browser/ui/webui/options/password_manager_handler.h
+++ b/chrome/browser/ui/webui/options/password_manager_handler.h
@@ -14,7 +14,7 @@
#include "chrome/browser/password_manager/password_store_consumer.h"
#include "chrome/browser/ui/webui/options/options_ui.h"
-namespace content {
+namespace autofill {
struct PasswordForm;
}
@@ -89,9 +89,9 @@ class PasswordManagerHandler : public OptionsPageUIHandler,
// Send the password store's reply back to the handler.
virtual void OnPasswordStoreRequestDone(
CancelableRequestProvider::Handle handle,
- const std::vector<content::PasswordForm*>& result) OVERRIDE;
+ const std::vector<autofill::PasswordForm*>& result) OVERRIDE;
virtual void OnGetPasswordStoreResults(
- const std::vector<content::PasswordForm*>& results) OVERRIDE;
+ const std::vector<autofill::PasswordForm*>& results) OVERRIDE;
};
// A short class to mediate requests to the password store for exceptions.
@@ -105,17 +105,17 @@ class PasswordManagerHandler : public OptionsPageUIHandler,
// Send the password store's reply back to the handler.
virtual void OnPasswordStoreRequestDone(
CancelableRequestProvider::Handle handle,
- const std::vector<content::PasswordForm*>& result) OVERRIDE;
+ const std::vector<autofill::PasswordForm*>& result) OVERRIDE;
virtual void OnGetPasswordStoreResults(
- const std::vector<content::PasswordForm*>& results) OVERRIDE;
+ const std::vector<autofill::PasswordForm*>& results) OVERRIDE;
};
// Password store consumer for populating the password list and exceptions.
PasswordListPopulater populater_;
PasswordExceptionListPopulater exception_populater_;
- ScopedVector<content::PasswordForm> password_list_;
- ScopedVector<content::PasswordForm> password_exception_list_;
+ ScopedVector<autofill::PasswordForm> password_list_;
+ ScopedVector<autofill::PasswordForm> password_exception_list_;
// User's pref
std::string languages_;

Powered by Google App Engine
This is Rietveld 408576698