diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-16 03:40:30 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-16 03:40:30 +0000 |
commit | ffc2aaabcd4e174bb4ba2b7007c7833e5db193bd (patch) | |
tree | 6dedb74d86eb242c36b325324578ad506510808a /chrome | |
parent | 5b0295eb2ff6dd988c2e3a340ad37e61fef0bbe3 (diff) | |
download | chromium_src-ffc2aaabcd4e174bb4ba2b7007c7833e5db193bd.zip chromium_src-ffc2aaabcd4e174bb4ba2b7007c7833e5db193bd.tar.gz chromium_src-ffc2aaabcd4e174bb4ba2b7007c7833e5db193bd.tar.bz2 |
Quick test to locate position of crash on qemu. Will remove after one batch of crashes.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5546 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/views/frame/browser_view.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/views/frame/browser_view.cc b/chrome/browser/views/frame/browser_view.cc index b13f0b3..01ff721 100644 --- a/chrome/browser/views/frame/browser_view.cc +++ b/chrome/browser/views/frame/browser_view.cc @@ -645,7 +645,8 @@ void BrowserView::TabSelectedAt(TabContents* old_contents, // Update all the UI bits. UpdateTitleBar(); - toolbar_->SetProfile(new_contents->profile()); + Profile* profile = new_contents->profile(); // TODO(beng): remove after 1 cyc. + toolbar_->SetProfile(profile); UpdateToolbar(new_contents, true); UpdateUIForContents(new_contents); } |