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

Unified Diff: remoting/host/chromeos/point_transformer.cc

Issue 2561963002: base: Remove the string logging from CHECK(). (Closed)
Patch Set: checkstring: rebase Created 4 years 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: remoting/host/chromeos/point_transformer.cc
diff --git a/remoting/host/chromeos/point_transformer.cc b/remoting/host/chromeos/point_transformer.cc
index 43a3941d25c98328cd00c40695563dd62bc33930..5bcbc19f612b4445ed44b83050266b135f390fec 100644
--- a/remoting/host/chromeos/point_transformer.cc
+++ b/remoting/host/chromeos/point_transformer.cc
@@ -36,8 +36,8 @@ void PointTransformer::OnWindowTransformed(aura::Window* window) {
gfx::Transform to_device_pixels;
gfx::Transform to_dip;
- CHECK(rotation.GetInverse(&inverse_rotation))
- << "Cannot inverse the root transform." << rotation.ToString();
+ // Cannot inverse the root transform.|rotation.ToString()|.
+ CHECK(rotation.GetInverse(&inverse_rotation));
to_device_pixels.Scale(scale, scale);
to_dip.Scale(1 / scale, 1 / scale);

Powered by Google App Engine
This is Rietveld 408576698