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

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

Issue 2533963002: [chromedriver] Return not-implemented status code for FullscreenWindow command. (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 2c5426c4e4a034c0ac2095af1e3216de3767773d..af0c443b22fb6542d07084f487a7f7092284518c 100644
--- a/chrome/test/chromedriver/server/http_handler.cc
+++ b/chrome/test/chromedriver/server/http_handler.cc
@@ -341,6 +341,11 @@ HttpHandler::HttpHandler(
kPost,
"session/:sessionId/window/:windowHandle/maximize",
WrapToCommand("MaximizeWindow", base::Bind(&ExecuteMaximizeWindow))),
+ CommandMapping(
+ kPost,
+ "session/:sessionId/window/fullscreen",
+ WrapToCommand("FullscreenWindow",
+ base::Bind(&ExecuteUnimplementedCommand))),
CommandMapping(kDelete,
"session/:sessionId/window",
WrapToCommand("CloseWindow", base::Bind(&ExecuteClose))),
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698