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

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

Issue 23464065: [chromedriver] Use data:, instead of about:blank for the start page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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
« no previous file with comments | « no previous file | chrome/test/chromedriver/chrome_launcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/chrome/adb_impl.cc
diff --git a/chrome/test/chromedriver/chrome/adb_impl.cc b/chrome/test/chromedriver/chrome/adb_impl.cc
index ce1271a21b7f962b3a4d5a0a059d92bac2ffd586..b2373e58a9780c78da901f9de2cfc5817145c696 100644
--- a/chrome/test/chromedriver/chrome/adb_impl.cc
+++ b/chrome/test/chromedriver/chrome/adb_impl.cc
@@ -166,7 +166,7 @@ Status AdbImpl::Launch(
std::string response;
Status status = ExecuteHostShellCommand(
device_serial,
- "am start -W -n " + package + "/" + activity + " -d about:blank",
+ "am start -W -n " + package + "/" + activity + " -d data:,",
&response);
if (!status.IsOk())
return status;
« no previous file with comments | « no previous file | chrome/test/chromedriver/chrome_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698