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

Unified Diff: components/password_manager/core/browser/fake_form_fetcher.cc

Issue 2878463003: Introduce SuppressedHTTPSFormFetcher. (Closed)
Patch Set: Polish. Created 3 years, 7 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: components/password_manager/core/browser/fake_form_fetcher.cc
diff --git a/components/password_manager/core/browser/fake_form_fetcher.cc b/components/password_manager/core/browser/fake_form_fetcher.cc
index e2f13a896c3a517af13a572bfd6f37bb348554c9..d5652e7648f11853608ee88e765c567fd99856e6 100644
--- a/components/password_manager/core/browser/fake_form_fetcher.cc
+++ b/components/password_manager/core/browser/fake_form_fetcher.cc
@@ -37,6 +37,15 @@ FakeFormFetcher::GetFederatedMatches() const {
return federated_;
}
+const std::vector<const PasswordForm*>&
+FakeFormFetcher::GetSuppressedHTTPSForms() const {
+ return suppressed_https_forms_;
+}
+
+bool FakeFormFetcher::DidCompleteQueryingSuppressedHTTPSForms() const {
+ return did_complete_querying_suppressed_https_forms_;
+}
+
void FakeFormFetcher::SetNonFederated(
const std::vector<const autofill::PasswordForm*>& non_federated,
size_t filtered_count) {
« no previous file with comments | « components/password_manager/core/browser/fake_form_fetcher.h ('k') | components/password_manager/core/browser/form_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698