summaryrefslogtreecommitdiffstats
path: root/content/common/drag_messages.h
diff options
context:
space:
mode:
authorhnoda@google.com <hnoda@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-28 17:11:57 +0000
committerhnoda@google.com <hnoda@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-28 17:11:57 +0000
commitfcad494579ca15abbb60a4c45ce068206b049299 (patch)
treebf76f9177a266d81acf9badbc582a9dd3fa975af /content/common/drag_messages.h
parenta08f27b9cdae490a53a49792cdec154fa3c4afcd (diff)
downloadchromium_src-fcad494579ca15abbb60a4c45ce068206b049299.zip
chromium_src-fcad494579ca15abbb60a4c45ce068206b049299.tar.gz
chromium_src-fcad494579ca15abbb60a4c45ce068206b049299.tar.bz2
File upload API in chromedriver
Added support for file upload API in /session/:sessionId/element/:id/value. If the given element is a file upload control, the file paths are set to the file upload control using drag and drop emulation. BUG=none TEST=none Review URL: http://codereview.chromium.org/7055004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90785 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/common/drag_messages.h')
-rw-r--r--content/common/drag_messages.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/content/common/drag_messages.h b/content/common/drag_messages.h
index 6e0507b..a8ac21f 100644
--- a/content/common/drag_messages.h
+++ b/content/common/drag_messages.h
@@ -75,3 +75,6 @@ IPC_MESSAGE_ROUTED4(DragHostMsg_StartDragging,
// |is_drop_target| is true if the mouse is over a valid drop target.
IPC_MESSAGE_ROUTED1(DragHostMsg_UpdateDragCursor,
WebKit::WebDragOperation /* drag_operation */)
+
+// Notifies the host that the renderer finished a drop operation.
+IPC_MESSAGE_ROUTED0(DragHostMsg_TargetDrop_ACK)