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

Unified Diff: chrome/test/chromedriver/chrome/devtools_http_client.cc

Issue 655373002: [chromedriver] Accept <webview> tags in chromedriver (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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/chrome/devtools_http_client.cc
diff --git a/chrome/test/chromedriver/chrome/devtools_http_client.cc b/chrome/test/chromedriver/chrome/devtools_http_client.cc
index e98072968ee049a3e65e8b0166d9b178e9c502c7..9e4599be1c38e07187f2e521bd6184cf8aecb676 100644
--- a/chrome/test/chromedriver/chrome/devtools_http_client.cc
+++ b/chrome/test/chromedriver/chrome/devtools_http_client.cc
@@ -268,6 +268,8 @@ Status ParseWebViewsInfo(const std::string& data,
type = WebViewInfo::kPage;
else if (type_as_string == "worker")
type = WebViewInfo::kWorker;
+ else if (type_as_string == "webview")
+ type = WebViewInfo::kWebView;
else if (type_as_string == "other")
type = WebViewInfo::kOther;
else

Powered by Google App Engine
This is Rietveld 408576698