| 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..caee854be9724a1ab0f3c570bf7822cd65694a0d 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 autofill popups.
|
| + virtual void ExecuteCommand(int id) = 0;
|
| };
|
|
|
| } // namespace autofill
|
|
|