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

Unified Diff: jingle/notifier/listener/xml_element_util.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 | « ipc/ipc_message_utils.h ('k') | net/ftp/ftp_auth_cache_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jingle/notifier/listener/xml_element_util.cc
===================================================================
--- jingle/notifier/listener/xml_element_util.cc (revision 54340)
+++ jingle/notifier/listener/xml_element_util.cc (working copy)
@@ -7,7 +7,7 @@
#include <sstream>
#include <string>
-#include "base/string_util.h"
+#include "base/string_number_conversions.h"
#include "talk/xmllite/qname.h"
#include "talk/xmllite/xmlconstants.h"
#include "talk/xmllite/xmlelement.h"
@@ -35,7 +35,7 @@
const buzz::QName intAttrQName(buzz::STR_EMPTY, "int");
buzz::XmlElement* int_xml_element =
new buzz::XmlElement(elementQName, true);
- int_xml_element->AddAttr(intAttrQName, IntToString(value));
+ int_xml_element->AddAttr(intAttrQName, base::IntToString(value));
return int_xml_element;
}
« no previous file with comments | « ipc/ipc_message_utils.h ('k') | net/ftp/ftp_auth_cache_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698