Index: chrome/browser/automation/testing_automation_provider.h |
diff --git a/chrome/browser/automation/testing_automation_provider.h b/chrome/browser/automation/testing_automation_provider.h |
index 834f0660ad623fdc9a6ef8b8e29e8da7d4b6fff4..365ecb2ecdfaa1c09254b33e975678b70d348252 100644 |
--- a/chrome/browser/automation/testing_automation_provider.h |
+++ b/chrome/browser/automation/testing_automation_provider.h |
@@ -1052,6 +1052,20 @@ class TestingAutomationProvider : public AutomationProvider, |
void WebkitMouseDoubleClick(DictionaryValue* args, |
IPC::Message* message); |
+ // Drag and drop file paths at a given coordinate. |
+ // Example: |
+ // input: { "windex": 1, |
+ // "tab_index": 1, |
+ // "x": 100, |
+ // "y": 100, |
+ // "paths": [ |
+ // "/tmp/file.txt" |
+ // ], |
+ // } |
+ // output: none |
+ void DragAndDropFilePaths(DictionaryValue* args, |
+ IPC::Message* message); |
+ |
// Sends the WebKit key event with the specified properties. |
// Example: |
// input: { "windex": 1, |