| 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..4903fdee2d383ab57955aec3683e80d223c5d91c 100644
|
| --- a/components/autofill/core/browser/autofill_driver.h
|
| +++ b/components/autofill/core/browser/autofill_driver.h
|
| @@ -70,7 +70,11 @@ class AutofillDriver {
|
|
|
| // Tells the renderer to accept the password autofill suggestion for
|
| // |username|.
|
| - virtual void RendererShouldAcceptPasswordAutofillSuggestion(
|
| + virtual void RendererShouldFillPassword(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.
|
|
|