summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--webkit/glue/glue_serialize_unittest.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/webkit/glue/glue_serialize_unittest.cc b/webkit/glue/glue_serialize_unittest.cc
index 1960fed..46cefde 100644
--- a/webkit/glue/glue_serialize_unittest.cc
+++ b/webkit/glue/glue_serialize_unittest.cc
@@ -43,13 +43,6 @@ static std::ostream& operator<<(std::ostream& out, const WebVector<T>& v) {
return out;
}
-static std::ostream& operator<<(std::ostream& out, const WebHTTPBody& data) {
- WebHTTPBody::Element element;
- for (size_t i = 0; data.elementAt(i, element); ++i)
- out << "[" << element << "] ";
- return out;
-}
-
static std::ostream& operator<<(std::ostream& out, const WebPoint& pt) {
return out << "(" << pt.x << "," << pt.y << ")";
}