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

Unified Diff: components/autofill/core/browser/autofill_driver.h

Issue 208453002: Add "previewing on hover" support for password field. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/autofill_driver.h
diff --git a/components/autofill/core/browser/autofill_driver.h b/components/autofill/core/browser/autofill_driver.h
index 629d85f8a5bbf8c51f30935df4a2d116e1574eba..a3109cc22cb8b407dddc2fd2d1da7491494217cc 100644
--- a/components/autofill/core/browser/autofill_driver.h
+++ b/components/autofill/core/browser/autofill_driver.h
@@ -73,6 +73,11 @@ class AutofillDriver {
virtual void RendererShouldAcceptPasswordAutofillSuggestion(
const base::string16& username) = 0;
+ // Tells the renderer to preview the password autofill suggestion for
+ // |username|.
+ virtual void RendererShouldPreviewPassword(
+ const base::string16& username) = 0;
+
// Tells the renderer to clear the currently filled Autofill results.
virtual void RendererShouldClearFilledForm() = 0;

Powered by Google App Engine
This is Rietveld 408576698