| 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 f3ccbbfdc548551a91ad5b0e39ad4589e858b54c..f38ac6860c2ef8186247fec6b79dcc65c163964d 100644
|
| --- a/third_party/WebKit/Source/platform/geometry/FloatRoundedRect.h
|
| +++ b/third_party/WebKit/Source/platform/geometry/FloatRoundedRect.h
|
| @@ -207,6 +207,11 @@ inline bool operator==(const FloatRoundedRect& a, const FloatRoundedRect& b)
|
| return a.rect() == b.rect() && a.getRadii() == b.getRadii();
|
| }
|
|
|
| +inline bool operator!=(const FloatRoundedRect& a, const FloatRoundedRect& b)
|
| +{
|
| + return !(a == b);
|
| +}
|
| +
|
| // Redeclared here to avoid ODR issues.
|
| // See platform/testing/GeometryPrinters.h.
|
| void PrintTo(const FloatRoundedRect&, std::ostream*);
|
|
|