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

Unified Diff: chrome/renderer/autofill/fake_content_password_manager_driver.h

Issue 2680163006: Eliminate PasswordAutofillAgentConstructed() in mojo interface PasswordManagerDriver (Closed)
Patch Set: Address comments from vabr@ Created 3 years, 10 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
« no previous file with comments | « no previous file | chrome/renderer/autofill/fake_content_password_manager_driver.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/autofill/fake_content_password_manager_driver.h
diff --git a/chrome/renderer/autofill/fake_content_password_manager_driver.h b/chrome/renderer/autofill/fake_content_password_manager_driver.h
index 4388ecd582b52d86e2d1156391a3ff814e4d51fc..5aac09680463c0b47e3eb8356da345e3114dc285 100644
--- a/chrome/renderer/autofill/fake_content_password_manager_driver.h
+++ b/chrome/renderer/autofill/fake_content_password_manager_driver.h
@@ -82,8 +82,6 @@ class FakeContentPasswordManagerDriver
return called_record_save_progress_;
}
- bool called_agent_constructed() const { return called_agent_constructed_; }
-
bool called_save_generation_field() const {
return called_save_generation_field_;
}
@@ -142,8 +140,6 @@ class FakeContentPasswordManagerDriver
void ShowNotSecureWarning(base::i18n::TextDirection text_direction,
const gfx::RectF& bounds) override;
- void PasswordAutofillAgentConstructed() override;
-
void RecordSavePasswordProgress(const std::string& log) override;
void SaveGenerationFieldDetectedByClassifier(
@@ -172,8 +168,6 @@ class FakeContentPasswordManagerDriver
base::Optional<std::vector<autofill::PasswordForm>> password_forms_rendered_;
// Records whether RecordSavePasswordProgress() gets called.
bool called_record_save_progress_ = false;
- // Records whether PasswordAutofillAgentConstructed() gets called.
- bool called_agent_constructed_ = false;
// Records whether SaveGenerationFieldDetectedByClassifier() gets called.
bool called_save_generation_field_ = false;
// Records data received via SaveGenerationFieldDetectedByClassifier() call.
« no previous file with comments | « no previous file | chrome/renderer/autofill/fake_content_password_manager_driver.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698