#ifndef UI_VIEWS_BUTTON_DRAG_UTILS_H_
#define UI_VIEWS_BUTTON_DRAG_UTILS_H_
#include <string>
#include "ui/views/views_export.h"
class GURL;
namespace gfx {
class ImageSkia;
class Point;
}
namespace ui {
class OSExchangeData;
}
namespace button_drag_utils {
VIEWS_EXPORT void SetURLAndDragImage(const GURL& url,
const std::u16string& title,
const gfx::ImageSkia& icon,
const gfx::Point* press_pt,
ui::OSExchangeData* data);
VIEWS_EXPORT void SetDragImage(const GURL& url,
const std::u16string& title,
const gfx::ImageSkia& icon,
const gfx::Point* press_pt,
ui::OSExchangeData* data);
}
#endif