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

Unified Diff: chrome/test/chromedriver/server/http_handler.cc

Issue 114403005: Adding a LaunchApp command to Chromedriver (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reuploading again since some files weren't included Created 6 years, 11 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/test/chromedriver/server/http_handler.cc
diff --git a/chrome/test/chromedriver/server/http_handler.cc b/chrome/test/chromedriver/server/http_handler.cc
index 86cc76cb475247fc9167d342a85f38cd3e8495df..1d25bfbe14206b3c9a06e330f0be823425579ba2 100644
--- a/chrome/test/chromedriver/server/http_handler.cc
+++ b/chrome/test/chromedriver/server/http_handler.cc
@@ -118,6 +118,9 @@ HttpHandler::HttpHandler(
CommandMapping(kPost,
"session/:sessionId/url",
WrapToCommand("Navigate", base::Bind(&ExecuteGet))),
+ CommandMapping(kPost,
+ "session/:sessionId/chromium/launch",
chrisgao (Use stgao instead) 2014/01/15 21:39:56 how about "launch" -> "launch_app"? It'll also mat
bustamante 2014/01/15 23:51:38 Sure, Done.
+ WrapToCommand("LaunchApp", base::Bind(&ExecuteLaunchApp))),
CommandMapping(kGet,
"session/:sessionId/alert",
WrapToCommand("IsAlertOpen",

Powered by Google App Engine
This is Rietveld 408576698