OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebDragSource
(Results
1 - 12
of
12
) sorted by null
/external/chromium/chrome/browser/tab_contents/
web_drag_source_win.h
23
class
WebDragSource
: public ui::DragSource,
27
WebDragSource
(gfx::NativeWindow source_wnd, TabContents* tab_contents);
28
virtual ~
WebDragSource
();
45
WebDragSource
();
63
DISALLOW_COPY_AND_ASSIGN(
WebDragSource
);
web_drag_source_win.cc
31
//
WebDragSource
, public:
33
WebDragSource
::
WebDragSource
(gfx::NativeWindow source_wnd,
45
WebDragSource
::~
WebDragSource
() {
48
void
WebDragSource
::OnDragSourceCancel() {
53
NewRunnableMethod(this, &
WebDragSource
::OnDragSourceCancel));
68
void
WebDragSource
::OnDragSourceDrop() {
76
NewRunnableMethod(this, &
WebDragSource
::DelayedOnDragSourceDrop));
79
void
WebDragSource
::DelayedOnDragSourceDrop()
[
all
...]
tab_contents_view_mac.h
25
@class
WebDragSource
;
34
scoped_nsobject<
WebDragSource
> dragSource_;
/external/chromium_org/content/browser/web_contents/
web_drag_source_win.h
28
class
WebDragSource
: public ui::DragSourceWin,
32
WebDragSource
(gfx::NativeWindow source_wnd, WebContents* web_contents);
33
virtual ~
WebDragSource
();
54
WebDragSource
();
74
DISALLOW_COPY_AND_ASSIGN(
WebDragSource
);
web_drag_source_win.cc
33
//
WebDragSource
, public:
35
WebDragSource
::
WebDragSource
(gfx::NativeWindow source_wnd,
48
WebDragSource
::~
WebDragSource
() {
51
void
WebDragSource
::OnDragSourceCancel() {
56
base::Bind(&
WebDragSource
::OnDragSourceCancel, this));
71
void
WebDragSource
::OnDragSourceDrop() {
81
base::Bind(&
WebDragSource
::DelayedOnDragSourceDrop, this));
84
void
WebDragSource
::DelayedOnDragSourceDrop()
[
all
...]
web_contents_drag_win.h
29
class
WebDragSource
;
106
scoped_refptr<
WebDragSource
> drag_source_;
web_contents_view_mac.h
25
@class
WebDragSource
;
41
base::scoped_nsobject<
WebDragSource
> dragSource_;
web_drag_source_mac.h
22
@interface
WebDragSource
: NSObject {
55
// Initialize a
WebDragSource
object for a drag (originating on the given
web_contents_drag_win.cc
164
drag_source_ = new
WebDragSource
(source_window_, web_contents_);
362
scoped_refptr<
WebDragSource
> retain_source(drag_source_);
382
//
WebDragSource
::OnDragSourceDrop, which means that the delayed dragend
/external/chromium/chrome/browser/ui/views/tab_contents/
tab_contents_drag_win.h
19
class
WebDragSource
;
85
scoped_refptr<
WebDragSource
> drag_source_;
tab_contents_drag_win.cc
118
drag_source_ = new
WebDragSource
(view_->GetNativeView(),
313
// This works because
WebDragSource
::OnDragSourceDrop uses PostTask to
/external/chromium/chrome/browser/ui/cocoa/tab_contents/
web_drag_source.h
17
@interface
WebDragSource
: NSObject {
44
// Initialize a
WebDragSource
object for a drag (originating on the given
Completed in 126 milliseconds