Index: chrome/browser/ui/views/tabs/tab_strip.cc |
diff --git a/chrome/browser/ui/views/tabs/tab_strip.cc b/chrome/browser/ui/views/tabs/tab_strip.cc |
index 1b3df8a2a05ce44710126aa46bc633da6a3b5a4a..ab9864eaae746d36de486799f4a4aee471024a71 100644 |
--- a/chrome/browser/ui/views/tabs/tab_strip.cc |
+++ b/chrome/browser/ui/views/tabs/tab_strip.cc |
@@ -1050,8 +1050,6 @@ void TabStrip::MaybeStartDrag( |
// creating the DragController remembers the WebContents delegates and we need |
// to make sure the existing DragController isn't still a delegate. |
drag_controller_.reset(); |
- TabDragController::DetachBehavior detach_behavior = |
- TabDragController::DETACHABLE; |
TabDragController::MoveBehavior move_behavior = |
TabDragController::REORDER; |
// Use MOVE_VISIBILE_TABS in the following conditions: |
@@ -1074,7 +1072,7 @@ void TabStrip::MaybeStartDrag( |
drag_controller_.reset(new TabDragController); |
drag_controller_->Init( |
this, tab, tabs, gfx::Point(x, y), event.x(), selection_model, |
- detach_behavior, move_behavior, EventSourceFromEvent(event)); |
+ move_behavior, EventSourceFromEvent(event)); |
} |
void TabStrip::ContinueDrag(views::View* view, const ui::LocatedEvent& event) { |