| Index: Source/platform/geometry/FloatQuad.h
|
| diff --git a/Source/platform/geometry/FloatQuad.h b/Source/platform/geometry/FloatQuad.h
|
| index 202974450923284aacd347758b33a30a750d6ac3..b0446b38bd4170a016b8cd358345d8d4e8b6acc5 100644
|
| --- a/Source/platform/geometry/FloatQuad.h
|
| +++ b/Source/platform/geometry/FloatQuad.h
|
| @@ -33,6 +33,7 @@
|
| #include "platform/geometry/FloatRect.h"
|
| #include "platform/geometry/IntRect.h"
|
| #include "platform/geometry/LayoutSize.h"
|
| +#include <iosfwd>
|
|
|
| namespace blink {
|
|
|
| @@ -179,8 +180,11 @@ inline bool operator!=(const FloatQuad& a, const FloatQuad& b)
|
| a.p4() != b.p4();
|
| }
|
|
|
| -} // namespace blink
|
|
|
| +// Redeclared here to avoid ODR issues.
|
| +// See platform/testing/GeometryPrinters.h.
|
| +void PrintTo(const FloatQuad&, std::ostream*);
|
|
|
| -#endif // FloatQuad_h
|
| +} // namespace blink
|
|
|
| +#endif // FloatQuad_h
|
|
|