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

Unified Diff: chrome_frame/npapi_url_request.cc

Issue 3056029: Move the number conversions from string_util to a new file.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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
« no previous file with comments | « chrome_frame/np_proxy_service.cc ('k') | chrome_frame/urlmon_url_request.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/npapi_url_request.cc
===================================================================
--- chrome_frame/npapi_url_request.cc (revision 54340)
+++ chrome_frame/npapi_url_request.cc (working copy)
@@ -4,7 +4,7 @@
#include "chrome_frame/npapi_url_request.h"
-#include "base/string_util.h"
+#include "base/string_number_conversions.h"
#include "chrome_frame/np_browser_functions.h"
#include "chrome_frame/np_utils.h"
#include "net/base/net_errors.h"
@@ -74,7 +74,7 @@
// Firefox looks specifically for "Content-length: \d+\r\n\r\n"
// to detect if extra headers are added to the message buffer.
buffer += "\r\nContent-length: ";
- buffer += IntToString(data_len);
+ buffer += base::IntToString(data_len);
buffer += "\r\n\r\n";
}
« no previous file with comments | « chrome_frame/np_proxy_service.cc ('k') | chrome_frame/urlmon_url_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698