Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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_ |
| OLD | NEW |