From 528c56de01bbbd38788ed6cf8d2eea4c56cbe19e Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Fri, 30 Jul 2010 19:28:44 +0000 Subject: Move the number conversions from string_util to a new file. Use the base namespace in the new file. Update callers. I removed all wstring variants and also the string->number ones that ignore the return value. That encourages people to write code and forget about error handling. TEST=included unit tests BUG=none Review URL: http://codereview.chromium.org/3056029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54355 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/bookmarks/bookmark_utils.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome/browser/bookmarks/bookmark_utils.cc') diff --git a/chrome/browser/bookmarks/bookmark_utils.cc b/chrome/browser/bookmarks/bookmark_utils.cc index 8003ea5..753c38c 100644 --- a/chrome/browser/bookmarks/bookmark_utils.cc +++ b/chrome/browser/bookmarks/bookmark_utils.cc @@ -9,7 +9,7 @@ #include "app/tree_node_iterator.h" #include "base/basictypes.h" #include "base/file_path.h" -#include "base/string_util.h" +#include "base/string_number_conversions.h" #include "base/string16.h" #include "base/time.h" #include "chrome/browser/bookmarks/bookmark_drag_data.h" @@ -165,7 +165,7 @@ bool ShouldOpenAll(gfx::NativeWindow parent, string16 message = l10n_util::GetStringFUTF16( IDS_BOOKMARK_BAR_SHOULD_OPEN_ALL, - IntToString16(descendant_count)); + base::IntToString16(descendant_count)); string16 title = l10n_util::GetStringUTF16(IDS_PRODUCT_NAME); return platform_util::SimpleYesNoBox(parent, title, message); } -- cgit v1.1