| Index: third_party/WebKit/Source/platform/geometry/DoublePoint.cpp
|
| diff --git a/third_party/WebKit/Source/platform/geometry/DoublePoint.cpp b/third_party/WebKit/Source/platform/geometry/DoublePoint.cpp
|
| index 563c557dfaf8995db35df2c2026bf84f7b8d98ba..11b657527eea750806e4636f08c81d818459ec34 100644
|
| --- a/third_party/WebKit/Source/platform/geometry/DoublePoint.cpp
|
| +++ b/third_party/WebKit/Source/platform/geometry/DoublePoint.cpp
|
| @@ -25,4 +25,9 @@ String DoublePoint::toString() const
|
| return String::format("%lg,%lg", x(), y());
|
| }
|
|
|
| +std::ostream& operator<<(std::ostream& ostream, const DoublePoint& point)
|
| +{
|
| + return ostream << point.toString();
|
| +}
|
| +
|
| } // namespace blink
|
|
|