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

Unified Diff: chrome/browser/net/gaia/gaia_oauth_fetcher.cc

Issue 10391158: Moves methods for finding browsers to browser_finder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Include fixs Created 8 years, 7 months 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/net/gaia/gaia_oauth_fetcher.cc
diff --git a/chrome/browser/net/gaia/gaia_oauth_fetcher.cc b/chrome/browser/net/gaia/gaia_oauth_fetcher.cc
index c156bac33a50915ab7d947b546ca5d7ad3409eed..580bb6d0ca898e15c49952b666f9878f38311eca 100644
--- a/chrome/browser/net/gaia/gaia_oauth_fetcher.cc
+++ b/chrome/browser/net/gaia/gaia_oauth_fetcher.cc
@@ -13,7 +13,8 @@
#include "base/string_util.h"
#include "chrome/browser/net/gaia/gaia_oauth_consumer.h"
#include "chrome/browser/profiles/profile.h"
-#include "chrome/browser/ui/browser_list.h"
+#include "chrome/browser/ui/browser.h"
+#include "chrome/browser/ui/browser_finder.h"
#include "chrome/browser/ui/tabs/tab_strip_model.h"
#include "chrome/common/chrome_notification_types.h"
#include "chrome/common/net/gaia/gaia_auth_fetcher.h"
@@ -24,6 +25,7 @@
#include "chrome/common/net/url_util.h"
#include "content/public/browser/notification_details.h"
#include "content/public/browser/notification_source.h"
+#include "content/public/common/referrer.h"
#include "content/public/common/url_fetcher.h"
#include "grit/chromium_strings.h"
#include "net/base/load_flags.h"
@@ -311,7 +313,7 @@ void GaiaOAuthFetcher::StartGetOAuthToken() {
chrome::NOTIFICATION_COOKIE_CHANGED,
content::Source<Profile>(profile_));
- Browser* browser = BrowserList::GetLastActiveWithProfile(profile_);
+ Browser* browser = browser::FindLastActiveWithProfile(profile_);
DCHECK(browser);
OpenGetOAuthTokenURL(browser,
@@ -321,7 +323,7 @@ void GaiaOAuthFetcher::StartGetOAuthToken() {
WebKit::WebReferrerPolicyDefault),
NEW_POPUP,
content::PAGE_TRANSITION_AUTO_BOOKMARK);
- popup_ = BrowserList::GetLastActiveWithProfile(profile_);
+ popup_ = browser::FindLastActiveWithProfile(profile_);
DCHECK(popup_ && popup_ != browser);
registrar_.Add(this,
chrome::NOTIFICATION_BROWSER_CLOSING,

Powered by Google App Engine
This is Rietveld 408576698