| Index: third_party/WebKit/Source/platform/geometry/DoubleSize.cpp
|
| diff --git a/third_party/WebKit/Source/platform/geometry/DoubleSize.cpp b/third_party/WebKit/Source/platform/geometry/DoubleSize.cpp
|
| index c7c0f93b251c5af4b975d647944898c451fb8ce8..ef1642d9ae1cf845a0ea697a220dcaed2f9fb6c3 100644
|
| --- a/third_party/WebKit/Source/platform/geometry/DoubleSize.cpp
|
| +++ b/third_party/WebKit/Source/platform/geometry/DoubleSize.cpp
|
| @@ -4,7 +4,6 @@
|
|
|
| #include "platform/geometry/DoubleSize.h"
|
| #include "platform/geometry/LayoutSize.h"
|
| -
|
| #include "wtf/text/WTFString.h"
|
|
|
| #include <limits>
|
| @@ -23,11 +22,9 @@ bool DoubleSize::isZero() const
|
| return fabs(m_width) < std::numeric_limits<double>::epsilon() && fabs(m_height) < std::numeric_limits<double>::epsilon();
|
| }
|
|
|
| -#ifndef NDEBUG
|
| String DoubleSize::toString() const
|
| {
|
| - return String::format("%fx%f", width(), height());
|
| + return String::format("%lgx%lg", width(), height());
|
| }
|
| -#endif
|
|
|
| } // namespace blink
|
|
|