| Index: third_party/WebKit/Source/platform/geometry/FloatRoundedRect.h
|
| diff --git a/third_party/WebKit/Source/platform/geometry/FloatRoundedRect.h b/third_party/WebKit/Source/platform/geometry/FloatRoundedRect.h
|
| index 406f91ffa2c071067d6ca0c01aeb4b722a46b979..ea4589833a9b9e885e7ab28f2a499d37f5958bc8 100644
|
| --- a/third_party/WebKit/Source/platform/geometry/FloatRoundedRect.h
|
| +++ b/third_party/WebKit/Source/platform/geometry/FloatRoundedRect.h
|
| @@ -201,10 +201,8 @@ inline bool operator==(const FloatRoundedRect& a, const FloatRoundedRect& b)
|
| return a.rect() == b.rect() && a.getRadii() == b.getRadii();
|
| }
|
|
|
| -// Redeclared here to avoid ODR issues.
|
| -// See platform/testing/GeometryPrinters.h.
|
| -void PrintTo(const FloatRoundedRect&, std::ostream*);
|
| -void PrintTo(const FloatRoundedRect::Radii&, std::ostream*);
|
| +PLATFORM_EXPORT std::ostream& operator<<(std::ostream&, const FloatRoundedRect&);
|
| +PLATFORM_EXPORT std::ostream& operator<<(std::ostream&, const FloatRoundedRect::Radii&);
|
|
|
| } // namespace blink
|
|
|
|
|