| Index: third_party/WebKit/Source/platform/geometry/DoubleSize.cpp
|
| diff --git a/third_party/WebKit/Source/platform/geometry/DoubleSize.cpp b/third_party/WebKit/Source/platform/geometry/DoubleSize.cpp
|
| index ef1642d9ae1cf845a0ea697a220dcaed2f9fb6c3..d4869683af677216957f850ae0d5c7e6d7eb4144 100644
|
| --- a/third_party/WebKit/Source/platform/geometry/DoubleSize.cpp
|
| +++ b/third_party/WebKit/Source/platform/geometry/DoubleSize.cpp
|
| @@ -27,4 +27,9 @@ String DoubleSize::toString() const
|
| return String::format("%lgx%lg", width(), height());
|
| }
|
|
|
| +std::ostream& operator<<(std::ostream& ostream, const DoubleSize& size)
|
| +{
|
| + return ostream << size.toString();
|
| +}
|
| +
|
| } // namespace blink
|
|
|