| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 CHROME_BROWSER_UI_PASSWORDS_PASSWORDS_CLIENT_UI_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_UI_PASSWORDS_PASSWORDS_CLIENT_UI_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_UI_PASSWORDS_PASSWORDS_CLIENT_UI_DELEGATE_H_ | 6 #define CHROME_BROWSER_UI_PASSWORDS_PASSWORDS_CLIENT_UI_DELEGATE_H_ |
| 7 | 7 |
| 8 #include <map> |
| 8 #include <memory> | 9 #include <memory> |
| 9 #include <vector> | 10 #include <vector> |
| 10 | 11 |
| 11 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/strings/string16.h" |
| 12 #include "components/autofill/core/common/password_form.h" | 14 #include "components/autofill/core/common/password_form.h" |
| 13 | 15 |
| 14 namespace content { | 16 namespace content { |
| 15 class WebContents; | 17 class WebContents; |
| 16 } | 18 } |
| 17 | 19 |
| 18 namespace password_manager { | 20 namespace password_manager { |
| 19 class PasswordFormManager; | 21 class PasswordFormManager; |
| 20 } | 22 } |
| 21 | 23 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 // visually inform the user that the save has occured. | 65 // visually inform the user that the save has occured. |
| 64 virtual void OnAutomaticPasswordSave( | 66 virtual void OnAutomaticPasswordSave( |
| 65 std::unique_ptr<password_manager::PasswordFormManager> form_manager) = 0; | 67 std::unique_ptr<password_manager::PasswordFormManager> form_manager) = 0; |
| 66 | 68 |
| 67 // Called when a form is autofilled with login information, so we can manage | 69 // Called when a form is autofilled with login information, so we can manage |
| 68 // password credentials for the current site which are stored in | 70 // password credentials for the current site which are stored in |
| 69 // |password_form_map|. This stores a copy of |password_form_map| and shows | 71 // |password_form_map|. This stores a copy of |password_form_map| and shows |
| 70 // the manage password icon. |federated_matches| contain the matching stored | 72 // the manage password icon. |federated_matches| contain the matching stored |
| 71 // federated credentials to display in the UI. | 73 // federated credentials to display in the UI. |
| 72 virtual void OnPasswordAutofilled( | 74 virtual void OnPasswordAutofilled( |
| 73 const autofill::PasswordFormMap& password_form_map, | 75 const std::map<base::string16, const autofill::PasswordForm*>& |
| 76 password_form_map, |
| 74 const GURL& origin, | 77 const GURL& origin, |
| 75 const std::vector<std::unique_ptr<autofill::PasswordForm>>* | 78 const std::vector<const autofill::PasswordForm*>* federated_matches) = 0; |
| 76 federated_matches) = 0; | |
| 77 | 79 |
| 78 protected: | 80 protected: |
| 79 virtual ~PasswordsClientUIDelegate() = default; | 81 virtual ~PasswordsClientUIDelegate() = default; |
| 80 }; | 82 }; |
| 81 | 83 |
| 82 // Returns ManagePasswordsUIController instance for |contents| | 84 // Returns ManagePasswordsUIController instance for |contents| |
| 83 PasswordsClientUIDelegate* PasswordsClientUIDelegateFromWebContents( | 85 PasswordsClientUIDelegate* PasswordsClientUIDelegateFromWebContents( |
| 84 content::WebContents* web_contents); | 86 content::WebContents* web_contents); |
| 85 | 87 |
| 86 #endif // CHROME_BROWSER_UI_PASSWORDS_PASSWORDS_CLIENT_UI_DELEGATE_H_ | 88 #endif // CHROME_BROWSER_UI_PASSWORDS_PASSWORDS_CLIENT_UI_DELEGATE_H_ |
| OLD | NEW |