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 |