OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebDragSource
(Results
1 - 9
of
9
) sorted by null
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/win/
WebDragSource.cpp
27
#include "
WebDragSource
.h"
39
PassRefPtr<
WebDragSource
>
WebDragSource
::createInstance()
41
return adoptRef(new
WebDragSource
);
44
WebDragSource
::
WebDragSource
()
48
HRESULT
WebDragSource
::QueryInterface(REFIID riid, void** ppvObject)
61
ULONG
WebDragSource
::AddRef(void)
67
ULONG
WebDragSource
::Release(void)
73
HRESULT
WebDragSource
::QueryContinueDrag(BOOL fEscapePressed, DWORD grfState
[
all
...]
WebDragSource.h
33
class
WebDragSource
: public IDropSource, public RefCounted<
WebDragSource
> {
35
static PassRefPtr<
WebDragSource
> createInstance();
43
WebDragSource
();
/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/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
/external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.cpp
80
#include "
WebDragSource
.h"
765
RefPtr<
WebDragSource
> source =
WebDragSource
::createInstance();
[
all
...]
Completed in 167 milliseconds