Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(817)

Unified Diff: third_party/WebKit/Source/platform/geometry/FloatSize.cpp

Issue 2191233002: Add platform/geometry pretty printers for logging and testing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fewer redundant spaces, more toString tests Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/geometry/FloatSize.cpp
diff --git a/third_party/WebKit/Source/platform/geometry/FloatSize.cpp b/third_party/WebKit/Source/platform/geometry/FloatSize.cpp
index 38c3375fff957d4bcbb4be9aa07d068e022b27cf..d54d55d8979fd84fcaa027369e768b84f9096d46 100644
--- a/third_party/WebKit/Source/platform/geometry/FloatSize.cpp
+++ b/third_party/WebKit/Source/platform/geometry/FloatSize.cpp
@@ -61,11 +61,9 @@ FloatSize FloatSize::narrowPrecision(double width, double height)
return FloatSize(narrowPrecisionToFloat(width), narrowPrecisionToFloat(height));
}
-#ifndef NDEBUG
String FloatSize::toString() const
{
- return String::format("%fx%f", width(), height());
+ return String::format("%lgx%lg", width(), height());
}
-#endif
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/platform/geometry/FloatSize.h ('k') | third_party/WebKit/Source/platform/geometry/IntPoint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698