| Index: third_party/WebKit/Source/platform/geometry/DoubleRect.cpp
|
| diff --git a/third_party/WebKit/Source/platform/geometry/DoubleRect.cpp b/third_party/WebKit/Source/platform/geometry/DoubleRect.cpp
|
| index 93da536fa1206ddd4e42f46b1390cb8bd1282e18..b7cb9435a84e0693d7273708eb9efbb0adc43578 100644
|
| --- a/third_party/WebKit/Source/platform/geometry/DoubleRect.cpp
|
| +++ b/third_party/WebKit/Source/platform/geometry/DoubleRect.cpp
|
| @@ -59,4 +59,9 @@ String DoubleRect::toString() const
|
| return String::format("%s %s", location().toString().ascii().data(), size().toString().ascii().data());
|
| }
|
|
|
| +std::ostream& operator<<(std::ostream& ostream, const DoubleRect& rect)
|
| +{
|
| + return ostream << rect.toString();
|
| +}
|
| +
|
| } // namespace blink
|
|
|