Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_ui_controller_mock.h" | 5 #include "chrome/browser/ui/passwords/manage_passwords_ui_controller_mock.h" |
| 6 | 6 |
| 7 #include "content/public/browser/web_contents.h" | 7 #include "content/public/browser/web_contents.h" |
| 8 | 8 |
| 9 ManagePasswordsUIControllerMock::ManagePasswordsUIControllerMock( | 9 ManagePasswordsUIControllerMock::ManagePasswordsUIControllerMock( |
| 10 content::WebContents* contents) | 10 content::WebContents* contents) |
| 11 : ManagePasswordsUIController(contents), | 11 : ManagePasswordsUIController(contents), |
| 12 navigated_to_settings_page_(false), | 12 navigated_to_settings_page_(false), |
| 13 saved_password_(false), | 13 saved_password_(false), |
| 14 never_saved_password_(false) { | 14 never_saved_password_(false) { |
| 15 contents->SetUserData(UserDataKey(), this); | 15 contents->SetUserData(UserDataKey(), this); |
| 16 } | 16 } |
| 17 | 17 |
| 18 ManagePasswordsUIControllerMock:: | 18 ManagePasswordsUIControllerMock:: |
| 19 ~ManagePasswordsUIControllerMock() {} | 19 ~ManagePasswordsUIControllerMock() {} |
| 20 | 20 |
| 21 void ManagePasswordsUIControllerMock:: | 21 void ManagePasswordsUIControllerMock:: |
| 22 NavigateToPasswordManagerSettingsPage() { | 22 NavigateToPasswordManagerSettingsPage() { |
| 23 navigated_to_settings_page_ = true; | 23 navigated_to_settings_page_ = true; |
| 24 } | 24 } |
| 25 | 25 |
| 26 const autofill::PasswordForm& | 26 const autofill::PasswordForm& |
| 27 ManagePasswordsUIControllerMock::PendingCredentials() const { | 27 ManagePasswordsUIControllerMock::PendingPassword() const { |
| 28 return pending_credentials_; | 28 return pending_password_; |
| 29 } | 29 } |
| 30 | 30 |
| 31 void ManagePasswordsUIControllerMock::SetPendingCredentials( | 31 void ManagePasswordsUIControllerMock::SetPendingPassword( |
| 32 autofill::PasswordForm pending_credentials) { | 32 autofill::PasswordForm pending_password) { |
| 33 pending_credentials_ = pending_credentials; | 33 pending_password_ = pending_password; |
| 34 } | |
| 35 | |
| 36 void ManagePasswordsUIControllerMock::UpdateBubbleAndIconVisibility() { | |
| 37 ManagePasswordsUIController::UpdateBubbleAndIconVisibility(); | |
| 38 OnBubbleShown(); | |
| 34 } | 39 } |
| 35 | 40 |
| 36 bool ManagePasswordsUIControllerMock::IsInstalled() const { | 41 bool ManagePasswordsUIControllerMock::IsInstalled() const { |
| 37 return web_contents()->GetUserData(UserDataKey()) == this; | 42 return web_contents()->GetUserData(UserDataKey()) == this; |
| 38 } | 43 } |
| 39 | 44 |
| 40 void ManagePasswordsUIControllerMock::SavePasswordInternal() { | 45 void ManagePasswordsUIControllerMock::SavePasswordInternal() { |
| 41 saved_password_ = true; | 46 saved_password_ = true; |
| 42 } | 47 } |
| 43 | 48 |
| 44 void ManagePasswordsUIControllerMock::NeverSavePasswordInternal() { | 49 void ManagePasswordsUIControllerMock::NeverSavePasswordInternal() { |
| 45 never_saved_password_ = true; | 50 never_saved_password_ = true; |
| 46 } | 51 } |
| 52 | |
| 53 void ManagePasswordsUIControllerMock::ChooseCredential( | |
|
Mike West
2014/11/20 08:19:32
Do you not need mocks for setting credentials to b
vasilii
2014/11/20 15:08:06
For testing the model - no, because ManagePassword
| |
| 54 bool was_chosen, | |
| 55 const autofill::PasswordForm& form) { | |
| 56 choose_credential_ = true; | |
| 57 } | |
| OLD | NEW |