// Simulate drag&drop system call.
void doDragDrop(const WebKit::WebDragData&, WebKit::WebDragOperationsMask);
+ // Test helper for dragging out images.
+ void dumpFilenameBeingDragged(const CppArgumentList&, CppVariant*);
+
// JS callback methods.
void mouseDown(const CppArgumentList&, CppVariant*);
void mouseUp(const CppArgumentList&, CppVariant*);
bool isDragMode() { return dragMode.isBool() && dragMode.toBoolean(); }
// Sometimes we queue up mouse move and mouse up events for drag drop
- // handling purposes. These methods dispatch the event.
+ // handling purposes. These methods dispatch the event.
void doMouseMove(const WebKit::WebMouseEvent&);
void doMouseUp(const WebKit::WebMouseEvent&);
static void doLeapForward(int milliseconds);
TaskList m_taskList;
- // Non-owning pointer. The EventSender is owned by the TestShell.
+ // Non-owning pointer. The EventSender is owned by the TestShell.
TestShell* m_shell;
// Location of last mouseMoveTo event.