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

Unified Diff: chrome_frame/metrics_service.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/test/ui/ui_test.cc ('k') | chrome_frame/np_proxy_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/metrics_service.cc
===================================================================
--- chrome_frame/metrics_service.cc (revision 54340)
+++ chrome_frame/metrics_service.cc (working copy)
@@ -52,6 +52,7 @@
#include "base/file_version_info.h"
#include "base/string_util.h"
#include "base/thread.h"
+#include "base/string_number_conversions.h"
#include "base/utf_string_conversions.h"
#include "chrome/common/chrome_version_info.h"
#include "chrome/installer/util/browser_distribution.h"
@@ -170,7 +171,7 @@
LPWSTR* additional_headers) {
std::string new_headers;
new_headers = StringPrintf("Content-Length: %s\r\n",
- Int64ToString(upload_data_size_).c_str());
+ base::Int64ToString(upload_data_size_).c_str());
new_headers += kMetricsType;
*additional_headers = reinterpret_cast<wchar_t*>(
« no previous file with comments | « chrome/test/ui/ui_test.cc ('k') | chrome_frame/np_proxy_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698