diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-05 19:18:58 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-05 19:18:58 +0000 |
commit | 9ac105a1023bc696e619e5714c524e1a3ffdc2ef (patch) | |
tree | e1695d622b67cb12af34adfef649d566be5deedf /chrome | |
parent | ed3729b99a05d6cf23c19f83e72d7479848a8c1a (diff) | |
download | chromium_src-9ac105a1023bc696e619e5714c524e1a3ffdc2ef.zip chromium_src-9ac105a1023bc696e619e5714c524e1a3ffdc2ef.tar.gz chromium_src-9ac105a1023bc696e619e5714c524e1a3ffdc2ef.tar.bz2 |
Reinstate this commented-out code now the root cause of the problem has been fixed.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4803 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/browser.cc | 3 | ||||
-rw-r--r-- | chrome/browser/views/frame/browser_view2.cc | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/chrome/browser/browser.cc b/chrome/browser/browser.cc index 016b43b..77f1628 100644 --- a/chrome/browser/browser.cc +++ b/chrome/browser/browser.cc @@ -908,8 +908,7 @@ void Browser::WindowMoved() { DCHECK(!g_browser_process->IsUsingNewFrames()); // Cancel any tabstrip animations, some of them may be invalidated by the // window being repositioned. - // Comment out for one cycle to see if this fixes dist tests. - //window_->GetTabStrip()->DestroyDragController(); + window_->GetTabStrip()->DestroyDragController(); GetStatusBubble()->Reposition(); diff --git a/chrome/browser/views/frame/browser_view2.cc b/chrome/browser/views/frame/browser_view2.cc index 7081665..9b3534b 100644 --- a/chrome/browser/views/frame/browser_view2.cc +++ b/chrome/browser/views/frame/browser_view2.cc @@ -116,8 +116,7 @@ BrowserView2::~BrowserView2() { void BrowserView2::WindowMoved() { // Cancel any tabstrip animations, some of them may be invalidated by the // window being repositioned. - // Comment out for one cycle to see if this fixes dist tests. - //tabstrip_->DestroyDragController(); + tabstrip_->DestroyDragController(); status_bubble_->Reposition(); |