| Index: chrome/browser/ui/gtk/password_generation_bubble_gtk.cc
|
| diff --git a/chrome/browser/ui/gtk/password_generation_bubble_gtk.cc b/chrome/browser/ui/gtk/password_generation_bubble_gtk.cc
|
| index 2fb2412b23dd1d1ba4de9e743ddfa851976aa096..fc3818a4071a1ac9765de112fe06b3c852bcba8d 100644
|
| --- a/chrome/browser/ui/gtk/password_generation_bubble_gtk.cc
|
| +++ b/chrome/browser/ui/gtk/password_generation_bubble_gtk.cc
|
| @@ -6,7 +6,7 @@
|
|
|
| #include "base/utf_string_conversions.h"
|
| #include "chrome/browser/ui/browser.h"
|
| -#include "chrome/browser/ui/browser_list.h"
|
| +#include "chrome/browser/ui/browser_finder.h"
|
| #include "chrome/browser/ui/gtk/bubble/bubble_gtk.h"
|
| #include "chrome/browser/ui/gtk/gtk_chrome_link_button.h"
|
| #include "chrome/browser/ui/gtk/gtk_theme_service.h"
|
| @@ -90,7 +90,7 @@ void PasswordGenerationBubbleGtk::OnAcceptClicked(GtkWidget* widget) {
|
| }
|
|
|
| void PasswordGenerationBubbleGtk::OnLearnMoreLinkClicked(GtkButton* button) {
|
| - Browser* browser = BrowserList::GetLastActiveWithProfile(profile_);
|
| + Browser* browser = browser::FindLastActiveWithProfile(profile_);
|
| content::OpenURLParams params(
|
| GURL(chrome::kAutoPasswordGenerationLearnMoreURL), content::Referrer(),
|
| NEW_FOREGROUND_TAB, content::PAGE_TRANSITION_LINK, false);
|
|
|