summaryrefslogtreecommitdiffstats
path: root/chrome/browser
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser')
-rw-r--r--chrome/browser/browser.cc3
-rw-r--r--chrome/browser/views/frame/browser_view2.cc3
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();