| 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 ff3bb2ab7028ff26c36b40ca1ec6c1e33c736482..60f0e3cffa361e457d1967df958e89b9fd6e1216 100644
|
| --- a/chrome/browser/automation/testing_automation_provider.h
|
| +++ b/chrome/browser/automation/testing_automation_provider.h
|
| @@ -1060,6 +1060,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,
|
|
|