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 #ifndef CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_SELECTION_VIEW_H_ | 4 #ifndef CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_SELECTION_VIEW_H_ |
5 #define CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_SELECTION_VIEW_H_ | 5 #define CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_SELECTION_VIEW_H_ |
6 | 6 |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "components/autofill/core/common/password_form.h" | 10 #include "components/autofill/core/common/password_form.h" |
11 #include "ui/views/view.h" | 11 #include "ui/views/view.h" |
12 | 12 |
13 namespace views { | 13 namespace views { |
14 class Combobox; | 14 class Combobox; |
15 } | 15 } |
16 | 16 |
17 class ManagePasswordsBubbleModel; | 17 class ManagePasswordsBubbleModel; |
18 | 18 |
19 // A view where the user can select a credential. | 19 // A view where the user can select a credential. |
20 class CredentialsSelectionView : public views::View { | 20 class CredentialsSelectionView : public views::View { |
21 public: | 21 public: |
22 CredentialsSelectionView( | 22 explicit CredentialsSelectionView( |
23 ManagePasswordsBubbleModel* manage_passwords_bubble_model, | 23 ManagePasswordsBubbleModel* manage_passwords_bubble_model); |
24 const std::vector<const autofill::PasswordForm*>& password_forms, | |
25 const base::string16& best_matched_username); | |
26 ~CredentialsSelectionView() override; | 24 ~CredentialsSelectionView() override; |
27 | 25 |
28 // This methods also reports a user action. | 26 // This methods also reports a user action. |
29 const autofill::PasswordForm* GetSelectedCredentials(); | 27 const autofill::PasswordForm* GetSelectedCredentials(); |
30 | 28 |
31 private: | 29 private: |
32 views::Combobox* GenerateUsernameCombobox( | 30 views::Combobox* GenerateUsernameCombobox( |
33 const std::vector<const autofill::PasswordForm*>& forms, | |
34 const base::string16& best_matched_username); | 31 const base::string16& best_matched_username); |
35 void ReportUserActionOnce(bool was_update_rejected, int selected_index); | 32 void ReportUserActionOnce(bool was_update_rejected, int selected_index); |
36 | 33 |
37 const std::vector<const autofill::PasswordForm*>& password_forms_; | 34 const std::vector<autofill::PasswordForm>* password_forms_; |
38 views::Combobox* combobox_; | 35 views::Combobox* combobox_; |
39 int default_index_; | 36 int default_index_; |
40 bool is_default_best_match_; | 37 bool is_default_best_match_; |
41 bool is_default_preferred_; | 38 bool is_default_preferred_; |
42 bool action_reported_; | 39 bool action_reported_; |
43 | 40 |
44 DISALLOW_COPY_AND_ASSIGN(CredentialsSelectionView); | 41 DISALLOW_COPY_AND_ASSIGN(CredentialsSelectionView); |
45 }; | 42 }; |
46 | 43 |
47 #endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_SELECTION_VIEW_H_ | 44 #endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_SELECTION_VIEW_H_ |
OLD | NEW |