Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(273)

Unified Diff: chrome/browser/automation/testing_automation_provider.h

Issue 7055004: File upload API in chromedriver (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixed according to the code review Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 66769d7779afed0c48f8a3a840fca496ebc693d4..2c371061793e8e5c8e4b3bd79dfaa8f4fcc1de2d 100644
--- a/chrome/browser/automation/testing_automation_provider.h
+++ b/chrome/browser/automation/testing_automation_provider.h
@@ -1077,6 +1077,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,

Powered by Google App Engine
This is Rietveld 408576698