Chromium Code Reviews| Index: components/autofill/core/browser/autofill_client.h |
| diff --git a/components/autofill/core/browser/autofill_client.h b/components/autofill/core/browser/autofill_client.h |
| index 3d98c3908f1acc22fa26df2b8f1467b4439c9edd..d1adefa24163c8aef9f6f76231ba0ffea7455bdb 100644 |
| --- a/components/autofill/core/browser/autofill_client.h |
| +++ b/components/autofill/core/browser/autofill_client.h |
| @@ -186,16 +186,12 @@ class AutofillClient : public RiskDataLoader { |
| // Whether it is appropriate to show a signin promo for this user. |
| virtual bool ShouldShowSigninPromo() = 0; |
| - // Starts the signin flow. Should not be called if ShouldShowSigninPromo() |
| - // returns false. |
| - virtual void StartSigninFlow() = 0; |
| - |
| - // Shows the explanation of http not secure warning message. |
| - virtual void ShowHttpNotSecureExplanation() = 0; |
| - |
| // Whether Autofill is currently supported by the client. If false, all |
| // features of Autofill are disabled, including Autocomplete. |
| virtual bool IsAutofillSupported() = 0; |
| + |
| + // Handles simple actions for the password fields popups. |
|
vasilii
2017/07/26 12:17:36
Is it really limited for passwords?
melandory
2017/07/26 15:01:30
Done.
|
| + virtual bool ExecuteCommand(int id) = 0; |
| }; |
| } // namespace autofill |