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 navigated_to_account_central_management_page_(false), |
13 saved_password_(false), | 14 saved_password_(false), |
14 never_saved_password_(false) { | 15 never_saved_password_(false) { |
15 contents->SetUserData(UserDataKey(), this); | 16 contents->SetUserData(UserDataKey(), this); |
16 } | 17 } |
17 | 18 |
18 ManagePasswordsUIControllerMock:: | 19 ManagePasswordsUIControllerMock:: |
19 ~ManagePasswordsUIControllerMock() {} | 20 ~ManagePasswordsUIControllerMock() {} |
20 | 21 |
21 void ManagePasswordsUIControllerMock:: | 22 void ManagePasswordsUIControllerMock:: |
22 NavigateToPasswordManagerSettingsPage() { | 23 NavigateToPasswordManagerSettingsPage() { |
23 navigated_to_settings_page_ = true; | 24 navigated_to_settings_page_ = true; |
24 } | 25 } |
25 | 26 |
| 27 void ManagePasswordsUIControllerMock::NavigateToAccountCentralManagementPage() { |
| 28 navigated_to_account_central_management_page_ = true; |
| 29 } |
| 30 |
26 const autofill::PasswordForm& | 31 const autofill::PasswordForm& |
27 ManagePasswordsUIControllerMock::PendingCredentials() const { | 32 ManagePasswordsUIControllerMock::PendingCredentials() const { |
28 return pending_credentials_; | 33 return pending_credentials_; |
29 } | 34 } |
30 | 35 |
31 void ManagePasswordsUIControllerMock::SetPendingCredentials( | 36 void ManagePasswordsUIControllerMock::SetPendingCredentials( |
32 autofill::PasswordForm pending_credentials) { | 37 autofill::PasswordForm pending_credentials) { |
33 pending_credentials_ = pending_credentials; | 38 pending_credentials_ = pending_credentials; |
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 } |
OLD | NEW |