Home
last modified time | relevance | path

Searched refs:CustomDrag (Results 1 – 2 of 2) sorted by relevance

/external/chromium/chrome/browser/ui/gtk/
Dcustom_drag.h24 class CustomDrag {
26 explicit CustomDrag(gfx::Image* icon, int code_mask, GdkDragAction action);
27 virtual ~CustomDrag();
34 CHROMEGTK_CALLBACK_1(CustomDrag, void, OnDragBegin, GdkDragContext*);
35 CHROMEGTK_CALLBACK_1(CustomDrag, void, OnDragEnd, GdkDragContext*);
41 CustomDrag* custom_drag) { in OnDragDataGetThunk()
54 DISALLOW_COPY_AND_ASSIGN(CustomDrag);
58 class DownloadItemDrag : public CustomDrag {
85 class BookmarkDrag : public CustomDrag {
Dcustom_drag.cc44 CustomDrag::CustomDrag(gfx::Image* icon, int code_mask, GdkDragAction action) in CustomDrag() function in CustomDrag
62 CustomDrag::~CustomDrag() { in ~CustomDrag()
66 void CustomDrag::OnDragBegin(GtkWidget* widget, GdkDragContext* drag_context) { in OnDragBegin()
71 void CustomDrag::OnDragEnd(GtkWidget* widget, GdkDragContext* drag_context) { in OnDragEnd()
79 : CustomDrag(icon, kDownloadItemCodeMask, kDownloadItemDragAction), in DownloadItemDrag()
123 : CustomDrag(NULL, in BookmarkDrag()