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

Side by Side Diff: chrome/browser/ui/passwords/manage_passwords_bubble_model.cc

Issue 399573002: [Password Generation] Trigger confirmation bubble when a password is saved (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
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 #include "chrome/browser/ui/passwords/manage_passwords_bubble_model.h" 5 #include "chrome/browser/ui/passwords/manage_passwords_bubble_model.h"
6 6
7 #include "chrome/browser/password_manager/password_store_factory.h" 7 #include "chrome/browser/password_manager/password_store_factory.h"
8 #include "chrome/browser/ui/browser.h" 8 #include "chrome/browser/ui/browser.h"
9 #include "chrome/browser/ui/browser_finder.h" 9 #include "chrome/browser/ui/browser_finder.h"
10 #include "chrome/browser/ui/passwords/manage_passwords_ui_controller.h" 10 #include "chrome/browser/ui/passwords/manage_passwords_ui_controller.h"
11 #include "components/password_manager/core/browser/password_store.h" 11 #include "components/password_manager/core/browser/password_store.h"
12 #include "components/password_manager/core/common/password_manager_ui.h" 12 #include "components/password_manager/core/common/password_manager_ui.h"
13 #include "grit/generated_resources.h" 13 #include "grit/generated_resources.h"
14 #include "ui/base/l10n/l10n_util.h" 14 #include "ui/base/l10n/l10n_util.h"
15 15
16 using autofill::PasswordFormMap; 16 using autofill::PasswordFormMap;
17 using content::WebContents; 17 using content::WebContents;
18 namespace metrics_util = password_manager::metrics_util;
Mike West 2014/07/16 07:55:03 Nit: Next time I'd suggest doing this kind of clea
Garrett Casto 2014/07/17 06:42:45 Yeah, sorry. I did this because I had a line that
18 19
19 ManagePasswordsBubbleModel::ManagePasswordsBubbleModel( 20 ManagePasswordsBubbleModel::ManagePasswordsBubbleModel(
20 content::WebContents* web_contents) 21 content::WebContents* web_contents)
21 : content::WebContentsObserver(web_contents), 22 : content::WebContentsObserver(web_contents),
22 display_disposition_( 23 display_disposition_(
23 password_manager::metrics_util::AUTOMATIC_WITH_PASSWORD_PENDING), 24 metrics_util::AUTOMATIC_WITH_PASSWORD_PENDING),
24 dismissal_reason_(password_manager::metrics_util::NOT_DISPLAYED) { 25 dismissal_reason_(metrics_util::NOT_DISPLAYED) {
25 ManagePasswordsUIController* controller = 26 ManagePasswordsUIController* controller =
26 ManagePasswordsUIController::FromWebContents(web_contents); 27 ManagePasswordsUIController::FromWebContents(web_contents);
27 28
28 // TODO(mkwst): Reverse this logic. The controller should populate the model 29 // TODO(mkwst): Reverse this logic. The controller should populate the model
29 // directly rather than the model pulling from the controller. Perhaps like 30 // directly rather than the model pulling from the controller. Perhaps like
30 // `controller->PopulateModel(this)`. 31 // `controller->PopulateModel(this)`.
31 state_ = controller->state(); 32 state_ = controller->state();
32 if (password_manager::ui::IsPendingState(state_)) 33 if (password_manager::ui::IsPendingState(state_))
33 pending_credentials_ = controller->PendingCredentials(); 34 pending_credentials_ = controller->PendingCredentials();
34 best_matches_ = controller->best_matches(); 35 best_matches_ = controller->best_matches();
35 36
36 if (password_manager::ui::IsPendingState(state_)) 37 if (password_manager::ui::IsPendingState(state_))
37 title_ = l10n_util::GetStringUTF16(IDS_SAVE_PASSWORD); 38 title_ = l10n_util::GetStringUTF16(IDS_SAVE_PASSWORD);
38 else if (state_ == password_manager::ui::BLACKLIST_STATE) 39 else if (state_ == password_manager::ui::BLACKLIST_STATE)
39 title_ = l10n_util::GetStringUTF16(IDS_MANAGE_PASSWORDS_BLACKLISTED_TITLE); 40 title_ = l10n_util::GetStringUTF16(IDS_MANAGE_PASSWORDS_BLACKLISTED_TITLE);
40 else 41 else
41 title_ = l10n_util::GetStringUTF16(IDS_MANAGE_PASSWORDS_TITLE); 42 title_ = l10n_util::GetStringUTF16(IDS_MANAGE_PASSWORDS_TITLE);
42 43
43 manage_link_ = 44 manage_link_ =
44 l10n_util::GetStringUTF16(IDS_OPTIONS_PASSWORDS_MANAGE_PASSWORDS_LINK); 45 l10n_util::GetStringUTF16(IDS_OPTIONS_PASSWORDS_MANAGE_PASSWORDS_LINK);
45 } 46 }
46 47
47 ManagePasswordsBubbleModel::~ManagePasswordsBubbleModel() {} 48 ManagePasswordsBubbleModel::~ManagePasswordsBubbleModel() {}
48 49
49 void ManagePasswordsBubbleModel::OnBubbleShown( 50 void ManagePasswordsBubbleModel::OnBubbleShown(
50 ManagePasswordsBubble::DisplayReason reason) { 51 ManagePasswordsBubble::DisplayReason reason) {
51 if (reason == ManagePasswordsBubble::USER_ACTION) { 52 if (reason == ManagePasswordsBubble::USER_ACTION) {
52 if (password_manager::ui::IsPendingState(state_)) { 53 if (password_manager::ui::IsPendingState(state_)) {
53 display_disposition_ = 54 display_disposition_ = metrics_util::MANUAL_WITH_PASSWORD_PENDING;
54 password_manager::metrics_util::MANUAL_WITH_PASSWORD_PENDING;
55 } else if (state_ == password_manager::ui::BLACKLIST_STATE) { 55 } else if (state_ == password_manager::ui::BLACKLIST_STATE) {
56 display_disposition_ = password_manager::metrics_util::MANUAL_BLACKLISTED; 56 display_disposition_ = metrics_util::MANUAL_BLACKLISTED;
57 } else { 57 } else {
58 display_disposition_ = 58 display_disposition_ = metrics_util::MANUAL_MANAGE_PASSWORDS;
59 password_manager::metrics_util::MANUAL_MANAGE_PASSWORDS;
60 } 59 }
61 } else { 60 } else {
62 DCHECK(password_manager::ui::IsPendingState(state_)); 61 if (state_ == password_manager::ui::CONFIRMATION_STATE) {
Mike West 2014/07/16 07:55:03 Did you intentionally drop the DCHECK?
Garrett Casto 2014/07/17 06:42:45 Yes, you can end up with CONFIRMATION_STATE here,
63 display_disposition_ = 62 display_disposition_ =
64 password_manager::metrics_util::AUTOMATIC_WITH_PASSWORD_PENDING; 63 metrics_util::AUTOMATIC_GENERATED_PASSWORD_CONFIRMATION;
64 } else {
65 display_disposition_ = metrics_util::AUTOMATIC_WITH_PASSWORD_PENDING;
66 }
65 } 67 }
66 password_manager::metrics_util::LogUIDisplayDisposition(display_disposition_); 68 metrics_util::LogUIDisplayDisposition(display_disposition_);
67 69
68 // Default to a dismissal reason of "no interaction". If the user interacts 70 // Default to a dismissal reason of "no interaction". If the user interacts
69 // with the button in such a way that it closes, we'll reset this value 71 // with the button in such a way that it closes, we'll reset this value
70 // accordingly. 72 // accordingly.
71 dismissal_reason_ = password_manager::metrics_util::NO_DIRECT_INTERACTION; 73 dismissal_reason_ = metrics_util::NO_DIRECT_INTERACTION;
72 } 74 }
73 75
74 void ManagePasswordsBubbleModel::OnBubbleHidden() { 76 void ManagePasswordsBubbleModel::OnBubbleHidden() {
75 if (dismissal_reason_ == password_manager::metrics_util::NOT_DISPLAYED) 77 if (dismissal_reason_ == metrics_util::NOT_DISPLAYED)
76 return; 78 return;
77 79
78 password_manager::metrics_util::LogUIDismissalReason(dismissal_reason_); 80 metrics_util::LogUIDismissalReason(dismissal_reason_);
79 } 81 }
80 82
81 void ManagePasswordsBubbleModel::OnNopeClicked() { 83 void ManagePasswordsBubbleModel::OnNopeClicked() {
82 dismissal_reason_ = password_manager::metrics_util::CLICKED_NOPE; 84 dismissal_reason_ = metrics_util::CLICKED_NOPE;
83 state_ = password_manager::ui::PENDING_PASSWORD_STATE; 85 state_ = password_manager::ui::PENDING_PASSWORD_STATE;
84 } 86 }
85 87
86 void ManagePasswordsBubbleModel::OnNeverForThisSiteClicked() { 88 void ManagePasswordsBubbleModel::OnNeverForThisSiteClicked() {
87 dismissal_reason_ = password_manager::metrics_util::CLICKED_NEVER; 89 dismissal_reason_ = metrics_util::CLICKED_NEVER;
88 ManagePasswordsUIController* manage_passwords_ui_controller = 90 ManagePasswordsUIController* manage_passwords_ui_controller =
89 ManagePasswordsUIController::FromWebContents(web_contents()); 91 ManagePasswordsUIController::FromWebContents(web_contents());
90 manage_passwords_ui_controller->NeverSavePassword(); 92 manage_passwords_ui_controller->NeverSavePassword();
91 state_ = password_manager::ui::BLACKLIST_STATE; 93 state_ = password_manager::ui::BLACKLIST_STATE;
92 } 94 }
93 95
94 void ManagePasswordsBubbleModel::OnUnblacklistClicked() { 96 void ManagePasswordsBubbleModel::OnUnblacklistClicked() {
95 dismissal_reason_ = password_manager::metrics_util::CLICKED_UNBLACKLIST; 97 dismissal_reason_ = metrics_util::CLICKED_UNBLACKLIST;
96 ManagePasswordsUIController* manage_passwords_ui_controller = 98 ManagePasswordsUIController* manage_passwords_ui_controller =
97 ManagePasswordsUIController::FromWebContents(web_contents()); 99 ManagePasswordsUIController::FromWebContents(web_contents());
98 manage_passwords_ui_controller->UnblacklistSite(); 100 manage_passwords_ui_controller->UnblacklistSite();
99 state_ = password_manager::ui::MANAGE_STATE; 101 state_ = password_manager::ui::MANAGE_STATE;
100 } 102 }
101 103
102 void ManagePasswordsBubbleModel::OnSaveClicked() { 104 void ManagePasswordsBubbleModel::OnSaveClicked() {
103 dismissal_reason_ = password_manager::metrics_util::CLICKED_SAVE; 105 dismissal_reason_ = metrics_util::CLICKED_SAVE;
104 ManagePasswordsUIController* manage_passwords_ui_controller = 106 ManagePasswordsUIController* manage_passwords_ui_controller =
105 ManagePasswordsUIController::FromWebContents(web_contents()); 107 ManagePasswordsUIController::FromWebContents(web_contents());
106 manage_passwords_ui_controller->SavePassword(); 108 manage_passwords_ui_controller->SavePassword();
107 state_ = password_manager::ui::MANAGE_STATE; 109 state_ = password_manager::ui::MANAGE_STATE;
108 } 110 }
109 111
110 void ManagePasswordsBubbleModel::OnDoneClicked() { 112 void ManagePasswordsBubbleModel::OnDoneClicked() {
111 dismissal_reason_ = password_manager::metrics_util::CLICKED_DONE; 113 dismissal_reason_ = metrics_util::CLICKED_DONE;
112 } 114 }
113 115
114 void ManagePasswordsBubbleModel::OnManageLinkClicked() { 116 void ManagePasswordsBubbleModel::OnManageLinkClicked() {
115 dismissal_reason_ = password_manager::metrics_util::CLICKED_MANAGE; 117 dismissal_reason_ = metrics_util::CLICKED_MANAGE;
116 ManagePasswordsUIController::FromWebContents(web_contents()) 118 ManagePasswordsUIController::FromWebContents(web_contents())
117 ->NavigateToPasswordManagerSettingsPage(); 119 ->NavigateToPasswordManagerSettingsPage();
118 } 120 }
119 121
120 void ManagePasswordsBubbleModel::OnPasswordAction( 122 void ManagePasswordsBubbleModel::OnPasswordAction(
121 const autofill::PasswordForm& password_form, 123 const autofill::PasswordForm& password_form,
122 PasswordAction action) { 124 PasswordAction action) {
123 if (!web_contents()) 125 if (!web_contents())
124 return; 126 return;
125 Profile* profile = 127 Profile* profile =
126 Profile::FromBrowserContext(web_contents()->GetBrowserContext()); 128 Profile::FromBrowserContext(web_contents()->GetBrowserContext());
127 password_manager::PasswordStore* password_store = 129 password_manager::PasswordStore* password_store =
128 PasswordStoreFactory::GetForProfile(profile, Profile::EXPLICIT_ACCESS) 130 PasswordStoreFactory::GetForProfile(profile, Profile::EXPLICIT_ACCESS)
129 .get(); 131 .get();
130 DCHECK(password_store); 132 DCHECK(password_store);
131 if (action == REMOVE_PASSWORD) 133 if (action == REMOVE_PASSWORD)
132 password_store->RemoveLogin(password_form); 134 password_store->RemoveLogin(password_form);
133 else 135 else
134 password_store->AddLogin(password_form); 136 password_store->AddLogin(password_form);
135 } 137 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698