| Index: chrome/browser/ui/cocoa/passwords/account_chooser_view_controller_unittest.mm
|
| diff --git a/chrome/browser/ui/cocoa/passwords/account_chooser_view_controller_unittest.mm b/chrome/browser/ui/cocoa/passwords/account_chooser_view_controller_unittest.mm
|
| index ad27954feec1ab6a3b7dd430f920739a7ed4cfe8..c8ef42ecaa8931082494f29ee73acc29f830061f 100644
|
| --- a/chrome/browser/ui/cocoa/passwords/account_chooser_view_controller_unittest.mm
|
| +++ b/chrome/browser/ui/cocoa/passwords/account_chooser_view_controller_unittest.mm
|
| @@ -21,7 +21,7 @@
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| #include "testing/gtest_mac.h"
|
| #include "url/gurl.h"
|
| -
|
| +#include "url/origin.h"
|
|
|
| @interface AccountAvatarFetcherTestManager : AccountAvatarFetcherManager {
|
| std::vector<GURL> fetchedAvatars_;
|
| @@ -159,7 +159,7 @@ TEST_F(AccountChooserViewControllerTest, ConfiguresFederatedCredential) {
|
| const char name[] = "Peter the Great";
|
| PasswordDialogController::FormsVector local_forms;
|
| local_forms.push_back(Credential("pizza"));
|
| - local_forms.back()->federation_url = GURL(federation);
|
| + local_forms.back()->federation_origin = url::Origin(GURL(federation));
|
| local_forms.back()->display_name = base::ASCIIToUTF16(name);
|
| SetUpAccountChooser(&local_forms);
|
|
|
|
|