diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-06 00:01:37 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-06 00:01:37 +0000 |
commit | 2fc15aeb53b690dd73e4dabf9b6c8c3fc38b38ab (patch) | |
tree | 796016371bc55dbe1c73537eb7542b6829428c8f /chrome/browser/profiles/profile_manager.cc | |
parent | f978eae03976135cea2fbab13a9ec42828b6a32e (diff) | |
download | chromium_src-2fc15aeb53b690dd73e4dabf9b6c8c3fc38b38ab.zip chromium_src-2fc15aeb53b690dd73e4dabf9b6c8c3fc38b38ab.tar.gz chromium_src-2fc15aeb53b690dd73e4dabf9b6c8c3fc38b38ab.tar.bz2 |
browser: Remove tab handler concept.
BUG=126182
R=ben@chromium.org
TBR=sky@chromium.org,thestig@chromium.org,mirandac@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10377015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@135577 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/profiles/profile_manager.cc')
-rw-r--r-- | chrome/browser/profiles/profile_manager.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/profiles/profile_manager.cc b/chrome/browser/profiles/profile_manager.cc index 83aa024..64385fd 100644 --- a/chrome/browser/profiles/profile_manager.cc +++ b/chrome/browser/profiles/profile_manager.cc @@ -610,7 +610,7 @@ void ProfileManager::BrowserListObserver::OnBrowserRemoved( void ProfileManager::BrowserListObserver::OnBrowserSetLastActive( const Browser* browser) { - Profile* last_active = browser->GetProfile(); + Profile* last_active = browser->profile(); PrefService* local_state = g_browser_process->local_state(); DCHECK(local_state); // Only keep track of profiles that we are managing; tests may create others. |