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

Unified Diff: chrome/browser/value_store/value_store_unittest.cc

Issue 10977073: Delete some unused code found by -Wunused-function (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: leiz Created 8 years, 3 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/browser/ui/webui/sync_setup_handler.cc ('k') | chrome/browser/webdata/keyword_table.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/value_store/value_store_unittest.cc
diff --git a/chrome/browser/value_store/value_store_unittest.cc b/chrome/browser/value_store/value_store_unittest.cc
index 980a55721a7fe1ab29de5c9f58c65bcb5e47b961..23860f4c54bb97f74ac86a2ca4af22edc6e79bcd 100644
--- a/chrome/browser/value_store/value_store_unittest.cc
+++ b/chrome/browser/value_store/value_store_unittest.cc
@@ -24,20 +24,6 @@ std::string GetJSON(const Value& value) {
return json;
}
-// Pretty-prints a set of strings.
-std::string ToString(const std::set<std::string>& strings) {
- std::string string("{");
- for (std::set<std::string>::const_iterator it = strings.begin();
- it != strings.end(); ++it) {
- if (it != strings.begin()) {
- string.append(", ");
- }
- string.append(*it);
- }
- string.append("}");
- return string;
-}
-
} // namespace
// Compares two possibly NULL values for equality, filling |error| with an
« no previous file with comments | « chrome/browser/ui/webui/sync_setup_handler.cc ('k') | chrome/browser/webdata/keyword_table.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698