| Index: third_party/WebKit/Source/platform/geometry/FloatRect.cpp
|
| diff --git a/third_party/WebKit/Source/platform/geometry/FloatRect.cpp b/third_party/WebKit/Source/platform/geometry/FloatRect.cpp
|
| index 75184861aed12ecfbe6bf94f0b65d0116fe91214..e3f225212bd8a91ccc65f090bde3ecd20251131b 100644
|
| --- a/third_party/WebKit/Source/platform/geometry/FloatRect.cpp
|
| +++ b/third_party/WebKit/Source/platform/geometry/FloatRect.cpp
|
| @@ -239,4 +239,9 @@ String FloatRect::toString() const
|
| size().toString().ascii().data());
|
| }
|
|
|
| +std::ostream& operator<<(std::ostream& ostream, const FloatRect& rect)
|
| +{
|
| + return ostream << rect.toString();
|
| +}
|
| +
|
| } // namespace blink
|
|
|