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