OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DragSession
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/page/
DragSession.h
33
struct
DragSession
{
38
DragSession
()
DragController.h
41
struct
DragSession
;
61
DragSession
dragEntered(DragData*);
63
DragSession
dragUpdated(DragData*);
85
DragSession
dragEnteredOrUpdated(DragData*);
87
bool tryDocumentDrag(DragData*, DragDestinationAction,
DragSession
&);
DragController.cpp
59
#include "core/page/
DragSession
.h"
211
DragSession
DragController::dragEntered(DragData* dragData)
234
DragSession
DragController::dragUpdated(DragData* dragData)
284
DragSession
DragController::dragEnteredOrUpdated(DragData* dragData)
293
return
DragSession
();
296
DragSession
dragSession
;
297
m_documentIsHandlingDrag = tryDocumentDrag(dragData, m_dragDestinationAction,
dragSession
);
299
dragSession
.operation = operationForLoad(dragData);
300
return
dragSession
;
[
all
...]
/external/chromium_org/third_party/WebKit/Source/web/
WebViewImpl.cpp
103
#include "core/page/
DragSession
.h"
[
all
...]
Completed in 72 milliseconds