| Index: third_party/WebKit/Source/platform/geometry/DoublePoint.cpp
|
| diff --git a/third_party/WebKit/Source/platform/geometry/DoublePoint.cpp b/third_party/WebKit/Source/platform/geometry/DoublePoint.cpp
|
| index bcbc4542dc6174eb5e0228e1be8464154d073d77..563c557dfaf8995db35df2c2026bf84f7b8d98ba 100644
|
| --- a/third_party/WebKit/Source/platform/geometry/DoublePoint.cpp
|
| +++ b/third_party/WebKit/Source/platform/geometry/DoublePoint.cpp
|
| @@ -5,7 +5,6 @@
|
| #include "platform/geometry/DoublePoint.h"
|
| #include "platform/geometry/FloatSize.h"
|
| #include "platform/geometry/LayoutPoint.h"
|
| -
|
| #include "wtf/text/WTFString.h"
|
|
|
| namespace blink {
|
| @@ -21,11 +20,9 @@ DoublePoint::DoublePoint(const FloatSize& size)
|
| {
|
| }
|
|
|
| -#ifndef NDEBUG
|
| String DoublePoint::toString() const
|
| {
|
| - return String::format("%f,%f", x(), y());
|
| + return String::format("%lg,%lg", x(), y());
|
| }
|
| -#endif
|
|
|
| } // namespace blink
|
|
|