| Index: chrome/browser/ui/views/tab_contents/tab_contents_view_views.cc
|
| diff --git a/chrome/browser/ui/views/tab_contents/tab_contents_view_views.cc b/chrome/browser/ui/views/tab_contents/tab_contents_view_views.cc
|
| index ab91362fb12b9e15c5af5299c38de322cb2da977..0c2f2f388a3510e96237db1eff777081c88d095f 100644
|
| --- a/chrome/browser/ui/views/tab_contents/tab_contents_view_views.cc
|
| +++ b/chrome/browser/ui/views/tab_contents/tab_contents_view_views.cc
|
| @@ -385,8 +385,8 @@ void TabContentsViewViews::OnNativeTabContentsViewMouseMove(bool motion) {
|
|
|
| void TabContentsViewViews::OnNativeTabContentsViewDraggingEnded() {
|
| if (close_tab_after_drag_ends_) {
|
| - close_tab_timer_.Start(FROM_HERE, base::TimeDelta::FromMilliseconds(0),
|
| - this, &TabContentsViewViews::CloseTab);
|
| + close_tab_timer_.Start(base::TimeDelta::FromMilliseconds(0), this,
|
| + &TabContentsViewViews::CloseTab);
|
| }
|
| tab_contents_->SystemDragEnded();
|
| }
|
|
|