diff options
-rw-r--r-- | chrome/browser/views/tabs/dragged_tab_controller.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/views/tabs/dragged_tab_controller.cc b/chrome/browser/views/tabs/dragged_tab_controller.cc index 4da9dba..b79759f 100644 --- a/chrome/browser/views/tabs/dragged_tab_controller.cc +++ b/chrome/browser/views/tabs/dragged_tab_controller.cc @@ -107,7 +107,8 @@ DraggedTabController::~DraggedTabController() { // contents to NULL, otherwise if the view is animating to its destination // bounds, it won't be able to clean up properly since its cleanup routine // uses GetIndexForDraggedContents, which will be invalid. - view_.reset(NULL); + //Commenting out for one cycle to see if this fixes dist tests. + //view_.reset(NULL); ChangeDraggedContents(NULL); // This removes our observer. } |