| Index: chrome/test/webdriver/automation.cc
|
| diff --git a/chrome/test/webdriver/automation.cc b/chrome/test/webdriver/automation.cc
|
| index 97822c344d242ed306dfb388b29007626ff0c6a0..72b581360e96a0151296c3c8ab4b2343163944da 100644
|
| --- a/chrome/test/webdriver/automation.cc
|
| +++ b/chrome/test/webdriver/automation.cc
|
| @@ -328,6 +328,23 @@ void Automation::MouseDoubleClick(int tab_id,
|
| }
|
| }
|
|
|
| +void Automation::DragAndDropFilePaths(
|
| + int tab_id, const gfx::Point& location,
|
| + const std::vector<std::string>& paths, Error** error) {
|
| + int windex = 0, tab_index = 0;
|
| + *error = GetIndicesForTab(tab_id, &windex, &tab_index);
|
| + if (*error) {
|
| + return;
|
| + }
|
| +
|
| + std::string error_msg;
|
| + if (!SendDragAndDropFilePathsJSONRequest(
|
| + automation(), windex, tab_index, location.x(), location.y(), paths,
|
| + &error_msg)) {
|
| + *error = CreateChromeError(error_msg);
|
| + }
|
| +}
|
| +
|
| void Automation::SendWebKeyEvent(int tab_id,
|
| const WebKeyEvent& key_event,
|
| Error** error) {
|
|
|