diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-05 20:21:45 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-05 20:21:45 +0000 |
commit | 2b481f8d533c08824d3aeeeb9a0407b596077c16 (patch) | |
tree | 24863f711b1255ef9f7e7802e2d627a5145c371c | |
parent | 4846061aa61d9aa3782e689757e818a3fc47ec88 (diff) | |
download | chromium_src-2b481f8d533c08824d3aeeeb9a0407b596077c16.zip chromium_src-2b481f8d533c08824d3aeeeb9a0407b596077c16.tar.gz chromium_src-2b481f8d533c08824d3aeeeb9a0407b596077c16.tar.bz2 |
Roll back. Sigh. Still not fixed.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4808 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/browser.cc | 3 | ||||
-rw-r--r-- | chrome/browser/views/frame/browser_view2.cc | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/browser.cc b/chrome/browser/browser.cc index 77f1628..016b43b 100644 --- a/chrome/browser/browser.cc +++ b/chrome/browser/browser.cc @@ -908,7 +908,8 @@ void Browser::WindowMoved() { DCHECK(!g_browser_process->IsUsingNewFrames()); // Cancel any tabstrip animations, some of them may be invalidated by the // window being repositioned. - window_->GetTabStrip()->DestroyDragController(); + // Comment out for one cycle to see if this fixes dist tests. + //window_->GetTabStrip()->DestroyDragController(); GetStatusBubble()->Reposition(); diff --git a/chrome/browser/views/frame/browser_view2.cc b/chrome/browser/views/frame/browser_view2.cc index 9b3534b..7081665 100644 --- a/chrome/browser/views/frame/browser_view2.cc +++ b/chrome/browser/views/frame/browser_view2.cc @@ -116,7 +116,8 @@ BrowserView2::~BrowserView2() { void BrowserView2::WindowMoved() { // Cancel any tabstrip animations, some of them may be invalidated by the // window being repositioned. - tabstrip_->DestroyDragController(); + // Comment out for one cycle to see if this fixes dist tests. + //tabstrip_->DestroyDragController(); status_bubble_->Reposition(); |