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

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

Issue 2971783002: Skeleton for showing "Show all saved passwords row" for Linux/CrOs/Windows platforms (Closed)
Patch Set: . Created 3 years, 5 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_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

Powered by Google App Engine
This is Rietveld 408576698