Index: chrome/test/chromedriver/window_commands.h |
diff --git a/chrome/test/chromedriver/window_commands.h b/chrome/test/chromedriver/window_commands.h |
index 8d0ee64969feb7b3c234f5e0350bd0cd89c5a738..017813628bfa0f4c517e12aad674aef54580c157 100644 |
--- a/chrome/test/chromedriver/window_commands.h |
+++ b/chrome/test/chromedriver/window_commands.h |
@@ -153,6 +153,27 @@ Status ExecuteMouseDoubleClick( |
const base::DictionaryValue& params, |
scoped_ptr<base::Value>* value); |
+// Touch press at a given coordinate. |
+Status ExecuteTouchDown( |
+ Session* session, |
+ WebView* web_view, |
+ const base::DictionaryValue& params, |
+ scoped_ptr<base::Value>* value); |
+ |
+// Touch release at a given coordinate. |
+Status ExecuteTouchUp( |
+ Session* session, |
+ WebView* web_view, |
+ const base::DictionaryValue& params, |
+ scoped_ptr<base::Value>* value); |
+ |
+// Touch move at a given coordinate. |
+Status ExecuteTouchMove( |
+ Session* session, |
+ WebView* web_view, |
+ const base::DictionaryValue& params, |
+ scoped_ptr<base::Value>* value); |
+ |
Status ExecuteGetActiveElement( |
Session* session, |
WebView* web_view, |