| Index: chrome/browser/ui/views/download/download_item_view.cc | 
| diff --git a/chrome/browser/ui/views/download/download_item_view.cc b/chrome/browser/ui/views/download/download_item_view.cc | 
| index c10bdd0438cdda901d8d7163169124f0324a0f99..e61853706312b31c282c4807239f9197f6ac9dcb 100644 | 
| --- a/chrome/browser/ui/views/download/download_item_view.cc | 
| +++ b/chrome/browser/ui/views/download/download_item_view.cc | 
| @@ -20,7 +20,7 @@ | 
| #include "chrome/browser/browser_process.h" | 
| #include "chrome/browser/download/chrome_download_manager_delegate.h" | 
| #include "chrome/browser/download/download_item_model.h" | 
| -#include "chrome/browser/download/download_util.h" | 
| +#include "chrome/browser/download/drag_download_item.h" | 
| #include "chrome/browser/safe_browsing/download_feedback_service.h" | 
| #include "chrome/browser/safe_browsing/download_protection_service.h" | 
| #include "chrome/browser/safe_browsing/safe_browsing_service.h" | 
| @@ -416,8 +416,8 @@ bool DownloadItemView::OnMouseDragged(const ui::MouseEvent& event) { | 
| download()->GetTargetFilePath(), IconLoader::SMALL); | 
| if (icon) { | 
| views::Widget* widget = GetWidget(); | 
| -        download_util::DragDownload(download(), icon, | 
| -                                    widget ? widget->GetNativeView() : NULL); | 
| +        DragDownloadItem( | 
| +            download(), icon, widget ? widget->GetNativeView() : NULL); | 
| } | 
| } | 
| } else if (ExceededDragThreshold(event.location() - drag_start_point_)) { | 
|  |