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

Unified Diff: content/renderer/accessibility/render_accessibility_impl.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: content/renderer/accessibility/render_accessibility_impl.cc
diff --git a/content/renderer/accessibility/render_accessibility_impl.cc b/content/renderer/accessibility/render_accessibility_impl.cc
index 7a7cf23dd213f68f65325f364b665b3d479d0546..503f48ff47d1a96985e4933cf67ff41d0cd369d7 100644
--- a/content/renderer/accessibility/render_accessibility_impl.cc
+++ b/content/renderer/accessibility/render_accessibility_impl.cc
@@ -524,7 +524,8 @@ void RenderAccessibilityImpl::OnEventsAck(int ack_token) {
}
void RenderAccessibilityImpl::OnFatalError() {
- CHECK(false) << "Invalid accessibility tree.";
+ // Invalid accessibility tree.
+ CHECK(false);
}
void RenderAccessibilityImpl::OnHitTest(const gfx::Point& point) {

Powered by Google App Engine
This is Rietveld 408576698