| Index: third_party/WebKit/Source/platform/geometry/DoubleSize.h
|
| diff --git a/third_party/WebKit/Source/platform/geometry/DoubleSize.h b/third_party/WebKit/Source/platform/geometry/DoubleSize.h
|
| index 4fef562a0c64e46f74b01dad19bdef5fa02f50e3..33c6ef31909a7789c9cb94b3479dec3505933f1f 100644
|
| --- a/third_party/WebKit/Source/platform/geometry/DoubleSize.h
|
| +++ b/third_party/WebKit/Source/platform/geometry/DoubleSize.h
|
| @@ -51,9 +51,7 @@ public:
|
| this->scale(scale, scale);
|
| }
|
|
|
| -#ifndef NDEBUG
|
| String toString() const;
|
| -#endif
|
|
|
| private:
|
| double m_width, m_height;
|
| @@ -113,6 +111,10 @@ inline FloatSize toFloatSize(const DoubleSize& p)
|
| return FloatSize(p.width(), p.height());
|
| }
|
|
|
| +// Redeclared here to avoid ODR issues.
|
| +// See platform/testing/GeometryPrinters.h.
|
| +void PrintTo(const DoubleSize&, std::ostream*);
|
| +
|
| } // namespace blink
|
|
|
| #endif // DoubleSize_h
|
|
|