| Index: third_party/WebKit/Source/platform/LayoutUnit.h
|
| diff --git a/third_party/WebKit/Source/platform/LayoutUnit.h b/third_party/WebKit/Source/platform/LayoutUnit.h
|
| index 355f65dc9ea747eb5514483ba3c6659e5071280e..2d4f7c51380f6e71b7e444bb36d6fc9f63778cd6 100644
|
| --- a/third_party/WebKit/Source/platform/LayoutUnit.h
|
| +++ b/third_party/WebKit/Source/platform/LayoutUnit.h
|
| @@ -815,6 +815,11 @@ inline LayoutUnit clampToLayoutUnit(LayoutUnit value, LayoutUnit min, LayoutUnit
|
| return value;
|
| }
|
|
|
| +inline std::ostream& operator<<(std::ostream& stream, const LayoutUnit& value)
|
| +{
|
| + return stream << value.toDouble();
|
| +}
|
| +
|
| } // namespace blink
|
|
|
| #endif // LayoutUnit_h
|
|
|