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 CredentialsSelectionView( |
23 ManagePasswordsBubbleModel* manage_passwords_bubble_model, | 23 ManagePasswordsBubbleModel* manage_passwords_bubble_model, |
24 const std::vector<const autofill::PasswordForm*>& password_forms, | 24 const std::vector<const autofill::PasswordForm*>& password_forms, |
25 const base::string16& best_matched_username); | 25 const base::string16& best_matched_username); |
| 26 ~CredentialsSelectionView() override; |
26 | 27 |
| 28 // This methods also reports a user action. |
27 const autofill::PasswordForm* GetSelectedCredentials(); | 29 const autofill::PasswordForm* GetSelectedCredentials(); |
28 | 30 |
29 private: | 31 private: |
| 32 views::Combobox* GenerateUsernameCombobox( |
| 33 const std::vector<const autofill::PasswordForm*>& forms, |
| 34 const base::string16& best_matched_username); |
| 35 void ReportUserActionOnce(bool was_update_rejected, int selected_index); |
| 36 |
30 const std::vector<const autofill::PasswordForm*>& password_forms_; | 37 const std::vector<const autofill::PasswordForm*>& password_forms_; |
31 views::Combobox* combobox_; | 38 views::Combobox* combobox_; |
| 39 int default_index_; |
| 40 bool is_default_best_match_; |
| 41 bool is_default_preferred_; |
| 42 bool action_reported_; |
32 | 43 |
33 DISALLOW_COPY_AND_ASSIGN(CredentialsSelectionView); | 44 DISALLOW_COPY_AND_ASSIGN(CredentialsSelectionView); |
34 }; | 45 }; |
35 | 46 |
36 #endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_SELECTION_VIEW_H_ | 47 #endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_SELECTION_VIEW_H_ |
OLD | NEW |