#ifndef UI_VIEWS_DRAG_UTILS_H_
#define UI_VIEWS_DRAG_UTILS_H_
#include "ui/base/dragdrop/drag_drop_types.h"
#include "ui/gfx/native_widget_types.h"
#include "ui/views/views_export.h"
namespace gfx {
class Canvas;
class Point;
class Size;
}
namespace ui {
class OSExchangeData;
}
namespace views {
class Widget;
VIEWS_EXPORT void RunShellDrag(gfx::NativeView view,
const ui::OSExchangeData& data,
const gfx::Point& location,
int operation,
ui::DragDropTypes::DragEventSource source);
VIEWS_EXPORT gfx::Canvas* GetCanvasForDragImage(Widget* widget,
const gfx::Size& canvas_size);
}
#endif