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

Side by Side Diff: chrome/browser/ui/passwords/password_manager_presenter.h

Issue 671653002: Standardize usage of virtual/override/final in chrome/browser/ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_PASSWORD_MANAGER_PRESENTER_H_ 5 #ifndef CHROME_BROWSER_UI_PASSWORDS_PASSWORD_MANAGER_PRESENTER_H_
6 #define CHROME_BROWSER_UI_PASSWORDS_PASSWORD_MANAGER_PRESENTER_H_ 6 #define CHROME_BROWSER_UI_PASSWORDS_PASSWORD_MANAGER_PRESENTER_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 11 matching lines...) Expand all
22 class Profile; 22 class Profile;
23 23
24 // Contains the common logic used by a PasswordUIView to 24 // Contains the common logic used by a PasswordUIView to
25 // interact with PasswordStore. It provides completion callbacks for 25 // interact with PasswordStore. It provides completion callbacks for
26 // PasswordStore operations and updates the view on PasswordStore changes. 26 // PasswordStore operations and updates the view on PasswordStore changes.
27 class PasswordManagerPresenter 27 class PasswordManagerPresenter
28 : public password_manager::PasswordStore::Observer { 28 : public password_manager::PasswordStore::Observer {
29 public: 29 public:
30 // |password_view| the UI view that owns this presenter, must not be NULL. 30 // |password_view| the UI view that owns this presenter, must not be NULL.
31 explicit PasswordManagerPresenter(PasswordUIView* password_view); 31 explicit PasswordManagerPresenter(PasswordUIView* password_view);
32 virtual ~PasswordManagerPresenter(); 32 ~PasswordManagerPresenter() override;
33 33
34 // PasswordStore::Observer implementation. 34 // PasswordStore::Observer implementation.
35 virtual void OnLoginsChanged( 35 void OnLoginsChanged(
36 const password_manager::PasswordStoreChangeList& changes) override; 36 const password_manager::PasswordStoreChangeList& changes) override;
37 37
38 // Repopulates the password and exception entries. 38 // Repopulates the password and exception entries.
39 void UpdatePasswordLists(); 39 void UpdatePasswordLists();
40 40
41 void Initialize(); 41 void Initialize();
42 42
43 // Gets the password entry at |index|. 43 // Gets the password entry at |index|.
44 const autofill::PasswordForm* GetPassword(size_t index); 44 const autofill::PasswordForm* GetPassword(size_t index);
45 45
(...skipping 23 matching lines...) Expand all
69 bool IsAuthenticationRequired(); 69 bool IsAuthenticationRequired();
70 70
71 // Sets the password and exception list of the UI view. 71 // Sets the password and exception list of the UI view.
72 void SetPasswordList(); 72 void SetPasswordList();
73 void SetPasswordExceptionList(); 73 void SetPasswordExceptionList();
74 74
75 // A short class to mediate requests to the password store. 75 // A short class to mediate requests to the password store.
76 class ListPopulater : public password_manager::PasswordStoreConsumer { 76 class ListPopulater : public password_manager::PasswordStoreConsumer {
77 public: 77 public:
78 explicit ListPopulater(PasswordManagerPresenter* page); 78 explicit ListPopulater(PasswordManagerPresenter* page);
79 virtual ~ListPopulater(); 79 ~ListPopulater() override;
80 80
81 // Send a query to the password store to populate a list. 81 // Send a query to the password store to populate a list.
82 virtual void Populate() = 0; 82 virtual void Populate() = 0;
83 83
84 protected: 84 protected:
85 PasswordManagerPresenter* page_; 85 PasswordManagerPresenter* page_;
86 }; 86 };
87 87
88 // A short class to mediate requests to the password store for passwordlist. 88 // A short class to mediate requests to the password store for passwordlist.
89 class PasswordListPopulater : public ListPopulater { 89 class PasswordListPopulater : public ListPopulater {
90 public: 90 public:
91 explicit PasswordListPopulater(PasswordManagerPresenter* page); 91 explicit PasswordListPopulater(PasswordManagerPresenter* page);
92 92
93 // Send a query to the password store to populate a password list. 93 // Send a query to the password store to populate a password list.
94 virtual void Populate() override; 94 void Populate() override;
95 95
96 // Send the password store's reply back to the handler. 96 // Send the password store's reply back to the handler.
97 virtual void OnGetPasswordStoreResults( 97 void OnGetPasswordStoreResults(
98 const std::vector<autofill::PasswordForm*>& results) override; 98 const std::vector<autofill::PasswordForm*>& results) override;
99 }; 99 };
100 100
101 // A short class to mediate requests to the password store for exceptions. 101 // A short class to mediate requests to the password store for exceptions.
102 class PasswordExceptionListPopulater : public ListPopulater { 102 class PasswordExceptionListPopulater : public ListPopulater {
103 public: 103 public:
104 explicit PasswordExceptionListPopulater(PasswordManagerPresenter* page); 104 explicit PasswordExceptionListPopulater(PasswordManagerPresenter* page);
105 105
106 // Send a query to the password store to populate a passwordException list. 106 // Send a query to the password store to populate a passwordException list.
107 virtual void Populate() override; 107 void Populate() override;
108 108
109 // Send the password store's reply back to the handler. 109 // Send the password store's reply back to the handler.
110 virtual void OnGetPasswordStoreResults( 110 void OnGetPasswordStoreResults(
111 const std::vector<autofill::PasswordForm*>& results) override; 111 const std::vector<autofill::PasswordForm*>& results) override;
112 }; 112 };
113 113
114 // Password store consumer for populating the password list and exceptions. 114 // Password store consumer for populating the password list and exceptions.
115 PasswordListPopulater populater_; 115 PasswordListPopulater populater_;
116 PasswordExceptionListPopulater exception_populater_; 116 PasswordExceptionListPopulater exception_populater_;
117 117
118 ScopedVector<autofill::PasswordForm> password_list_; 118 ScopedVector<autofill::PasswordForm> password_list_;
119 ScopedVector<autofill::PasswordForm> password_exception_list_; 119 ScopedVector<autofill::PasswordForm> password_exception_list_;
120 120
121 // Whether to show stored passwords or not. 121 // Whether to show stored passwords or not.
122 BooleanPrefMember show_passwords_; 122 BooleanPrefMember show_passwords_;
123 123
124 // Indicates whether or not the password manager should require the user to 124 // Indicates whether or not the password manager should require the user to
125 // reauthenticate before revealing plaintext passwords. 125 // reauthenticate before revealing plaintext passwords.
126 bool require_reauthentication_; 126 bool require_reauthentication_;
127 127
128 // The last time the user was successfully authenticated. 128 // The last time the user was successfully authenticated.
129 // Used to determine whether or not to reveal plaintext passwords. 129 // Used to determine whether or not to reveal plaintext passwords.
130 base::TimeTicks last_authentication_time_; 130 base::TimeTicks last_authentication_time_;
131 131
132 // UI view that owns this presenter. 132 // UI view that owns this presenter.
133 PasswordUIView* password_view_; 133 PasswordUIView* password_view_;
134 134
135 DISALLOW_COPY_AND_ASSIGN(PasswordManagerPresenter); 135 DISALLOW_COPY_AND_ASSIGN(PasswordManagerPresenter);
136 }; 136 };
137 137
138 #endif // CHROME_BROWSER_UI_PASSWORDS_PASSWORD_MANAGER_PRESENTER_H_ 138 #endif // CHROME_BROWSER_UI_PASSWORDS_PASSWORD_MANAGER_PRESENTER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698