| Index: third_party/WebKit/Source/platform/geometry/LayoutPoint.cpp
|
| diff --git a/third_party/WebKit/Source/platform/geometry/LayoutPoint.cpp b/third_party/WebKit/Source/platform/geometry/LayoutPoint.cpp
|
| index e5d394aafca6de8404158dd9ad101eb464219016..2a5c43c3798b3e440c6765bb021d9037645722b9 100644
|
| --- a/third_party/WebKit/Source/platform/geometry/LayoutPoint.cpp
|
| +++ b/third_party/WebKit/Source/platform/geometry/LayoutPoint.cpp
|
| @@ -15,4 +15,9 @@ String LayoutPoint::toString() const
|
| y().toString().ascii().data());
|
| }
|
|
|
| +std::ostream& operator<<(std::ostream& ostream, const LayoutPoint& point)
|
| +{
|
| + return ostream << point.toString();
|
| +}
|
| +
|
| } // namespace blink
|
|
|