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

Unified Diff: courgette/adjustment_method.cc

Issue 12767006: [Cleanup] Remove StringPrintf from global namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase, once more Created 7 years, 9 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
Index: courgette/adjustment_method.cc
diff --git a/courgette/adjustment_method.cc b/courgette/adjustment_method.cc
index 53745d748b156839d1f04dca7ddfb8cb1fde3c71..ac0f0a1c2f9791ab0acbd44090f15804e72d12df 100644
--- a/courgette/adjustment_method.cc
+++ b/courgette/adjustment_method.cc
@@ -169,7 +169,7 @@ static std::string ToString(Node* node) {
prefix.pop_back();
}
- s += StringPrintf("%u", node->count_);
+ s += base::StringPrintf("%u", node->count_);
s += " @";
s += base::Uint64ToString(node->edges_in_frequency_order.size());
s += "}";

Powered by Google App Engine
This is Rietveld 408576698