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

Unified Diff: chrome/browser/password_manager/password_store_consumer.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/password_manager/password_store_consumer.h
diff --git a/chrome/browser/password_manager/password_store_consumer.h b/chrome/browser/password_manager/password_store_consumer.h
index 5defe1e5749fbbb232c8b3ce58da1906ca4a65e7..c5ca1686af3ef8010923977a83c6a7a039b729ff 100644
--- a/chrome/browser/password_manager/password_store_consumer.h
+++ b/chrome/browser/password_manager/password_store_consumer.h
@@ -8,7 +8,7 @@
#include "chrome/browser/common/cancelable_request.h"
#include "chrome/common/cancelable_task_tracker.h"
-namespace content {
+namespace autofill {
struct PasswordForm;
}
@@ -25,7 +25,7 @@ class PasswordStoreConsumer {
// anyway with an empty vector.
virtual void OnPasswordStoreRequestDone(
CancelableRequestProvider::Handle handle,
- const std::vector<content::PasswordForm*>& result) = 0;
+ const std::vector<autofill::PasswordForm*>& result) = 0;
// The CancelableRequest framework needs both a callback (the
// PasswordStoreConsumer::OnPasswordStoreRequestDone) as well as a
@@ -39,7 +39,7 @@ class PasswordStoreConsumer {
// with an empty vector.
// Note: The implementation owns all PasswordForms in the vector.
virtual void OnGetPasswordStoreResults(
- const std::vector<content::PasswordForm*>& results) = 0;
+ const std::vector<autofill::PasswordForm*>& results) = 0;
// Cancels the task.
CancelableTaskTracker* cancelable_task_tracker() {
« no previous file with comments | « chrome/browser/password_manager/password_store_change.h ('k') | chrome/browser/password_manager/password_store_default.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698