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

Unified Diff: chrome/browser/ui/cocoa/passwords/manage_password_item_view_controller_unittest.mm

Issue 733463003: Show user credentials chooser bubble. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge with trunk Created 6 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/cocoa/passwords/manage_password_item_view_controller_unittest.mm
diff --git a/chrome/browser/ui/cocoa/passwords/manage_password_item_view_controller_unittest.mm b/chrome/browser/ui/cocoa/passwords/manage_password_item_view_controller_unittest.mm
index ff7ac5a09420d963236f8e20468f0ac6652d11c7..f7ddb6c63b131edb790d6468af77ee4233f2fb80 100644
--- a/chrome/browser/ui/cocoa/passwords/manage_password_item_view_controller_unittest.mm
+++ b/chrome/browser/ui/cocoa/passwords/manage_password_item_view_controller_unittest.mm
@@ -42,14 +42,14 @@ class ManagePasswordItemViewControllerTest
ManagePasswordsControllerTest::SetUp();
PasswordStoreFactory::GetInstance()->SetTestingFactory(
profile(), MockPasswordStoreService::Build);
- ui_controller()->SetPendingCredentials(credentials());
+ ui_controller()->SetPendingPassword(credentials());
}
ManagePasswordItemViewController* controller() {
if (!controller_) {
controller_.reset([[ManagePasswordItemViewController alloc]
initWithModel:model()
- passwordForm:ui_controller()->PendingCredentials()
+ passwordForm:ui_controller()->PendingPassword()
position:password_manager::ui::FIRST_ITEM]);
}
return controller_.get();

Powered by Google App Engine
This is Rietveld 408576698