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

Unified Diff: components/password_manager/core/browser/password_store.h

Issue 2263933002: Make FormFetcher a PasswordStoreConsumer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@621355_form_fetcher
Patch Set: Also operator= is now default Created 4 years 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: components/password_manager/core/browser/password_store.h
diff --git a/components/password_manager/core/browser/password_store.h b/components/password_manager/core/browser/password_store.h
index d7998e40efd3f901b6c443f1eeba9abfeeb7efe8..fe0ec7acf85c39aa3ea8dfa97f747d66fa18ede3 100644
--- a/components/password_manager/core/browser/password_store.h
+++ b/components/password_manager/core/browser/password_store.h
@@ -71,6 +71,10 @@ class PasswordStore : protected PasswordStoreSync,
const std::string& signon_realm,
const GURL& origin);
explicit FormDigest(const autofill::PasswordForm& form);
+ FormDigest(const FormDigest& other);
+ FormDigest(FormDigest&& other);
+ FormDigest& operator=(const FormDigest& other);
+ FormDigest& operator=(FormDigest&& other);
bool operator==(const FormDigest& other) const;
autofill::PasswordForm::Scheme scheme;

Powered by Google App Engine
This is Rietveld 408576698