| 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 02ae8cfd5eb109ab71aa3f04589120e8c086911a..2c1e175ee35c55b422f67d3c576cfd9bb41fd095 100644
|
| --- a/components/autofill/core/browser/autofill_driver.h
|
| +++ b/components/autofill/core/browser/autofill_driver.h
|
| @@ -55,8 +55,11 @@ class AutofillDriver {
|
| virtual void SendAutofillTypePredictionsToRenderer(
|
| const std::vector<FormStructure*>& forms) = 0;
|
|
|
| - // Tells the renderer to clear the currently displayed Autofill results.
|
| - virtual void RendererShouldClearForm() = 0;
|
| + // Tells the renderer to clear the currently filled Autofill results.
|
| + virtual void RendererShouldClearFilledForm() = 0;
|
| +
|
| + // Tells the renderer to clear the currently previewed Autofill results.
|
| + virtual void RendererShouldClearPreviewedForm() = 0;
|
| };
|
|
|
| } // namespace autofill
|
|
|