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

Unified Diff: components/autofill/core/browser/test_autofill_driver.cc

Issue 208453002: Add "previewing on hover" support for password field. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update code as per Ilya's comment. Created 6 years, 9 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/core/browser/test_autofill_driver.cc
diff --git a/components/autofill/core/browser/test_autofill_driver.cc b/components/autofill/core/browser/test_autofill_driver.cc
index a5901cfca6768a9ad116e111b4621c19dba8bb08..eb8f136d38e484b80db995c8417661d97cd6dbf7 100644
--- a/components/autofill/core/browser/test_autofill_driver.cc
+++ b/components/autofill/core/browser/test_autofill_driver.cc
@@ -47,10 +47,14 @@ void TestAutofillDriver::RendererShouldAcceptDataListSuggestion(
const base::string16& value) {
}
-void TestAutofillDriver::RendererShouldAcceptPasswordAutofillSuggestion(
+void TestAutofillDriver::RendererShouldFillPassword(
const base::string16& username) {
}
+void TestAutofillDriver::RendererShouldPreviewPassword(
+ const base::string16& username) {
+}
+
void TestAutofillDriver::RendererShouldClearFilledForm() {
}

Powered by Google App Engine
This is Rietveld 408576698