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

Side by Side Diff: chrome/browser/ui/views/passwords/credentials_selection_view.h

Issue 1151373006: Update Confirmation UI for saved password change (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed reviewer comments and made showing new password in update bubble Created 5 years, 4 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
(Empty)
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
3 // found in the LICENSE file.
4 #ifndef CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_SELECTION_VIEW_H_
5 #define CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_SELECTION_VIEW_H_
6
7 #include <vector>
8
9 #include "components/autofill/core/common/password_form.h"
10 #include "ui/views/controls/combobox/combobox_listener.h"
vasilii 2015/08/05 15:42:55 Remove
dvadym 2015/08/05 16:40:43 Done.
11 #include "ui/views/view.h"
12
13 namespace views {
14 class Combobox;
15 class Label;
vasilii 2015/08/05 15:42:55 Remove
dvadym 2015/08/05 16:40:43 Done.
16 }
17
18 class ManagePasswordsBubbleModel;
19
20 // A view where the user can select a credential.
21 class CredentialsSelectionView : public views::View {
22 public:
23 CredentialsSelectionView(
24 ManagePasswordsBubbleModel* manage_passwords_bubble_model,
25 const std::vector<const autofill::PasswordForm*>& password_forms,
26 const base::string16& best_matched_username);
27
28 const autofill::PasswordForm* GetSelectedCredentials();
29
30 private:
31 const std::vector<const autofill::PasswordForm*>& password_forms_;
32 views::Combobox* combobox_;
33
34 DISALLOW_COPY_AND_ASSIGN(CredentialsSelectionView);
35 };
36
37 #endif // CHROME_BROWSER_UI_VIEWS_PASSWORDS_CREDENTIALS_SELECTION_VIEW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698