summaryrefslogtreecommitdiffstats
path: root/chrome/browser/download/drag_download_item_gtk.cc
blob: 10bb338d43cd271eb1bb61abbf7822ed612d3a54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/download/drag_download_item.h"

#include "chrome/browser/ui/gtk/custom_drag.h"

void DragDownloadItem(const content::DownloadItem* download,
                      gfx::Image* icon,
                      gfx::NativeView view) {
  DownloadItemDrag::BeginDrag(download, icon);
}