| Index: chrome/browser/ui/views/about_chrome_view.cc
|
| diff --git a/chrome/browser/ui/views/about_chrome_view.cc b/chrome/browser/ui/views/about_chrome_view.cc
|
| index eff875181693cf69c7bc2746f63c973aeacf25f1..d187f7785aaba75d0d5cdbfc5b56e88ff6f3a5c3 100644
|
| --- a/chrome/browser/ui/views/about_chrome_view.cc
|
| +++ b/chrome/browser/ui/views/about_chrome_view.cc
|
| @@ -19,6 +19,8 @@
|
| #include "base/win/windows_version.h"
|
| #include "chrome/browser/google/google_util.h"
|
| #include "chrome/browser/prefs/pref_service.h"
|
| +#include "chrome/browser/ui/browser.h"
|
| +#include "chrome/browser/ui/browser_finder.h"
|
| #include "chrome/browser/ui/browser_list.h"
|
| #include "chrome/common/chrome_constants.h"
|
| #include "chrome/common/chrome_version_info.h"
|
| @@ -621,7 +623,7 @@ void AboutChromeView::LinkClicked(views::Link* source, int event_flags) {
|
| NOTREACHED() << "Unknown link source";
|
| }
|
|
|
| - Browser* browser = BrowserList::GetLastActiveWithProfile(profile_);
|
| + Browser* browser = browser::FindLastActiveWithProfile(profile_);
|
| OpenURLParams params(
|
| url, Referrer(), NEW_WINDOW, content::PAGE_TRANSITION_LINK, false);
|
| browser->OpenURL(params);
|
|
|