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

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

Issue 1358513003: Use correct IntToString variants in //chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
Index: chrome/test/chromedriver/chrome_launcher.cc
diff --git a/chrome/test/chromedriver/chrome_launcher.cc b/chrome/test/chromedriver/chrome_launcher.cc
index be302dc2a2ac5e7f074d27179092456b1c1b7a14..57bec2613fbcf9fd78e9aaa83b33122448ce5bf1 100644
--- a/chrome/test/chromedriver/chrome_launcher.cc
+++ b/chrome/test/chromedriver/chrome_launcher.cc
@@ -135,7 +135,7 @@ Status PrepareCommandLine(uint16 port,
switches.SetUnparsedSwitch(common_switch);
for (const auto& desktop_switch : kDesktopSwitches)
switches.SetUnparsedSwitch(desktop_switch);
- switches.SetSwitch("remote-debugging-port", base::IntToString(port));
+ switches.SetSwitch("remote-debugging-port", base::UintToString(port));
for (const auto& excluded_switch : capabilities.exclude_switches) {
switches.RemoveSwitch(excluded_switch);
}
« no previous file with comments | « chrome/test/chromedriver/chrome/device_manager.cc ('k') | chrome/third_party/mozilla_security_manager/nsNSSCertHelper.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698