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

Unified Diff: chrome/test/webdriver/http_response.cc

Issue 20182002: Make inttypes.h and similar macro usage C++11-friendly. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: line Created 7 years, 5 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/webdriver/http_response.cc
diff --git a/chrome/test/webdriver/http_response.cc b/chrome/test/webdriver/http_response.cc
index d89795e6e2eabc79c16bc697e87725b56a057035..d3393689bd42f23a7d2dbe9a6ca7f6fb1be3140a 100644
--- a/chrome/test/webdriver/http_response.cc
+++ b/chrome/test/webdriver/http_response.cc
@@ -124,8 +124,7 @@ void HttpResponse::GetData(std::string* data) const {
std::string length;
if (!GetHeader(kContentLengthHeader, &length)) {
*data += base::StringPrintf(
- "%s:%"PRIuS"\r\n",
- kContentLengthHeader, body_.length());
+ "%s:%" PRIuS "\r\n", kContentLengthHeader, body_.length());
}
*data += "\r\n";

Powered by Google App Engine
This is Rietveld 408576698