Index: chrome/test/chromedriver/window_commands.h |
diff --git a/chrome/test/chromedriver/window_commands.h b/chrome/test/chromedriver/window_commands.h |
index a77d2ee56c6fbd864fe81f982bfc72add4d10ac6..7c35ab9b9417e9c471691e273bc267459f8e4f05 100644 |
--- a/chrome/test/chromedriver/window_commands.h |
+++ b/chrome/test/chromedriver/window_commands.h |
@@ -39,13 +39,20 @@ Status ExecuteGet( |
const base::DictionaryValue& params, |
scoped_ptr<base::Value>* value); |
-// Evaluates a given script with arguments. |
+// Evaluates a given script with arguments synchronously. |
Status ExecuteExecuteScript( |
Session* session, |
WebView* web_view, |
const base::DictionaryValue& params, |
scoped_ptr<base::Value>* value); |
+// Evaluates a given script with arguments asynchronously. |
kkania
2013/03/08 17:25:12
technically, it doesn't evaluate a script asynchro
chrisgao (Use stgao instead)
2013/03/08 21:06:24
Done.
|
+Status ExecuteExecuteAsyncScript( |
+ Session* session, |
+ WebView* web_view, |
+ const base::DictionaryValue& params, |
+ scoped_ptr<base::Value>* value); |
+ |
// Changes the targeted frame for the given session. |
Status ExecuteSwitchToFrame( |
Session* session, |