OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DownloadItemDrag
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chrome/browser/ui/gtk/download/
download_item_drag.h
18
class
DownloadItemDrag
: public CustomDrag {
20
DownloadItemDrag
(const content::DownloadItem* item, gfx::Image* icon);
23
//
DownloadItemDrag
object is created.
32
virtual ~
DownloadItemDrag
();
42
DISALLOW_COPY_AND_ASSIGN(
DownloadItemDrag
);
download_item_drag.cc
26
class
DownloadItemDrag
::DragData {
52
DownloadItemDrag
::DragData::DragData(const DownloadItem* item)
59
void
DownloadItemDrag
::DragData::AttachToWidget(scoped_ptr<DragData> drag_data,
88
void
DownloadItemDrag
::DragData::OnDragDataGet(GtkWidget* widget,
97
void
DownloadItemDrag
::DragData::OnDestroy(gpointer data, GClosure* closure) {
102
//
DownloadItemDrag
------------------------------------------------------------
105
void
DownloadItemDrag
::SetSource(GtkWidget* widget,
112
DownloadItemDrag
::
DownloadItemDrag
(const DownloadItem* item, gfx::Image* icon)
116
DownloadItemDrag
::~DownloadItemDrag() {
[
all
...]
/external/chromium/chrome/browser/ui/gtk/
custom_drag.cc
75
//
DownloadItemDrag
------------------------------------------------------------
77
DownloadItemDrag
::
DownloadItemDrag
(const DownloadItem* item,
83
DownloadItemDrag
::~
DownloadItemDrag
() {
86
void
DownloadItemDrag
::OnDragDataGet(
94
void
DownloadItemDrag
::SetSource(GtkWidget* widget,
115
void
DownloadItemDrag
::BeginDrag(const DownloadItem* item, gfx::Image* icon) {
116
new
DownloadItemDrag
(item, icon);
custom_drag.h
58
class
DownloadItemDrag
: public CustomDrag {
61
//
DownloadItemDrag
object is created.
67
// Creates a new
DownloadItemDrag
, the lifetime of which is tied to the
72
DownloadItemDrag
(const DownloadItem* item, gfx::Image* icon);
73
virtual ~
DownloadItemDrag
();
81
DISALLOW_COPY_AND_ASSIGN(
DownloadItemDrag
);
Completed in 789 milliseconds