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

Unified Diff: components/autofill/content/renderer/test_password_autofill_agent.cc

Issue 563313004: [Password Manager] Unfriend PasswordAutofillAgentTest from PasswordAutofillAgent (clean-up). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Unfriend PasswordAutofillAgentTest and RequestAutocompleteRendererTest from AutofillAgent. Created 6 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: components/autofill/content/renderer/test_password_autofill_agent.cc
diff --git a/components/autofill/content/renderer/test_password_autofill_agent.cc b/components/autofill/content/renderer/test_password_autofill_agent.cc
index af2a543a308d54f51044fd1f254368e0b1d37e50..c9fa4aeda187bf6b1264260d9fc8ea9af19a57ac 100644
--- a/components/autofill/content/renderer/test_password_autofill_agent.cc
+++ b/components/autofill/content/renderer/test_password_autofill_agent.cc
@@ -17,4 +17,19 @@ bool TestPasswordAutofillAgent::OriginCanAccessPasswordManager(
return true;
}
+void TestPasswordAutofillAgent::SendPasswordForms(blink::WebFrame* frame,
+ bool only_visible) {
+ PasswordAutofillAgent::SendPasswordForms(frame, only_visible);
+}
+
+bool TestPasswordAutofillAgent::OnMessageReceived(const IPC::Message& message) {
+ return PasswordAutofillAgent::OnMessageReceived(message);
+}
+
+void TestPasswordAutofillAgent::WillSubmitForm(
+ blink::WebLocalFrame* frame,
+ const blink::WebFormElement& form) {
+ PasswordAutofillAgent::WillSubmitForm(frame, form);
+}
+
} // namespace autofill

Powered by Google App Engine
This is Rietveld 408576698