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

Unified Diff: courgette/ensemble.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/urlmon_url_request.cc ('k') | gpu/command_buffer/service/program_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: courgette/ensemble.cc
===================================================================
--- courgette/ensemble.cc (revision 54340)
+++ courgette/ensemble.cc (working copy)
@@ -2,13 +2,11 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// *** File comments
-
#include "courgette/ensemble.h"
#include "base/basictypes.h"
#include "base/logging.h"
-#include "base/string_util.h"
+#include "base/string_number_conversions.h"
#include "courgette/image_info.h"
#include "courgette/region.h"
@@ -23,9 +21,9 @@
std::string Element::Name() const {
return ensemble_->name() + "("
- + IntToString(kind()) + ","
- + Uint64ToString(offset_in_ensemble()) + ","
- + Uint64ToString(region().length()) + ")";
+ + base::IntToString(kind()) + ","
+ + base::Uint64ToString(offset_in_ensemble()) + ","
+ + base::Uint64ToString(region().length()) + ")";
}
// A subclass of Element that has a PEInfo.
« no previous file with comments | « chrome_frame/urlmon_url_request.cc ('k') | gpu/command_buffer/service/program_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698