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

Unified Diff: ui/events/gesture_detection/gesture_provider_unittest.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: ui/events/gesture_detection/gesture_provider_unittest.cc
diff --git a/ui/events/gesture_detection/gesture_provider_unittest.cc b/ui/events/gesture_detection/gesture_provider_unittest.cc
index 7987d4aa7ff74f151a578fa2a73092c6f7efa82a..e08c0ea45727b23b76eeb27f870a7075a9138548 100644
--- a/ui/events/gesture_detection/gesture_provider_unittest.cc
+++ b/ui/events/gesture_detection/gesture_provider_unittest.cc
@@ -119,7 +119,8 @@ class GestureProviderTest : public testing::Test, public GestureProviderClient {
positions[2].x(),
positions[2].y());
default:
- CHECK(false) << "MockMotionEvent only supports 1-3 pointers";
+ // MockMotionEvent only supports 1-3 pointers
+ CHECK(false);
return MockMotionEvent();
}
}

Powered by Google App Engine
This is Rietveld 408576698