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

Side by Side 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: comments 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_CLIENT_H_ 5 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_CLIENT_H_
6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_CLIENT_H_ 6 #define COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_CLIENT_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 192
193 // Whether it is appropriate to show a signin promo for this user. 193 // Whether it is appropriate to show a signin promo for this user.
194 virtual bool ShouldShowSigninPromo() = 0; 194 virtual bool ShouldShowSigninPromo() = 0;
195 195
196 // Starts the signin flow. Should not be called if ShouldShowSigninPromo() 196 // Starts the signin flow. Should not be called if ShouldShowSigninPromo()
197 // returns false. 197 // returns false.
198 virtual void StartSigninFlow() = 0; 198 virtual void StartSigninFlow() = 0;
199 199
200 // Shows the explanation of http not secure warning message. 200 // Shows the explanation of http not secure warning message.
201 virtual void ShowHttpNotSecureExplanation() = 0; 201 virtual void ShowHttpNotSecureExplanation() = 0;
202
203 // Opens password manager settings page, so user can check all saved
204 // passwords.
205 virtual void ShowPasswordsSettingsPage() = 0;
Evan Stade 2017/07/12 17:53:52 it seems like it would be a bit simpler (you would
melandory 2017/07/13 10:38:11 Done.
202 }; 206 };
203 207
204 } // namespace autofill 208 } // namespace autofill
205 209
206 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_CLIENT_H_ 210 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_AUTOFILL_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698