Index: Source/core/rendering/RenderTreeAsText.cpp |
diff --git a/Source/core/rendering/RenderTreeAsText.cpp b/Source/core/rendering/RenderTreeAsText.cpp |
index 6327bc24d2e9e412a7cbcbbe09f603d5dff44468..d8de7d18ec4519ce02ae950a0a2b155966f76f96 100644 |
--- a/Source/core/rendering/RenderTreeAsText.cpp |
+++ b/Source/core/rendering/RenderTreeAsText.cpp |
@@ -69,37 +69,6 @@ using namespace HTMLNames; |
static void writeLayers(TextStream&, const RenderLayer* rootLayer, RenderLayer*, const LayoutRect& paintDirtyRect, int indent = 0, RenderAsTextBehavior = RenderAsTextBehaviorNormal); |
-TextStream& operator<<(TextStream& ts, const IntRect& r) |
-{ |
- return ts << "at (" << r.x() << "," << r.y() << ") size " << r.width() << "x" << r.height(); |
-} |
- |
-TextStream& operator<<(TextStream& ts, const IntPoint& p) |
-{ |
- return ts << "(" << p.x() << "," << p.y() << ")"; |
-} |
- |
-TextStream& operator<<(TextStream& ts, const FloatPoint& p) |
-{ |
- ts << "(" << TextStream::FormatNumberRespectingIntegers(p.x()); |
- ts << "," << TextStream::FormatNumberRespectingIntegers(p.y()); |
- ts << ")"; |
- return ts; |
-} |
- |
-TextStream& operator<<(TextStream& ts, const FloatSize& s) |
-{ |
- ts << "width=" << TextStream::FormatNumberRespectingIntegers(s.width()); |
- ts << " height=" << TextStream::FormatNumberRespectingIntegers(s.height()); |
- return ts; |
-} |
- |
-void writeIndent(TextStream& ts, int indent) |
-{ |
- for (int i = 0; i != indent; ++i) |
- ts << " "; |
-} |
- |
static void printBorderStyle(TextStream& ts, const EBorderStyle borderStyle) |
{ |
switch (borderStyle) { |