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

Unified Diff: extensions/renderer/logging_native_handler.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: extensions/renderer/logging_native_handler.cc
diff --git a/extensions/renderer/logging_native_handler.cc b/extensions/renderer/logging_native_handler.cc
index 96e746c87a4779ea531626b956b89fe90c5db50c..383c8a881a6a69fdbf4dbca2b870cab2be3a5755 100644
--- a/extensions/renderer/logging_native_handler.cc
+++ b/extensions/renderer/logging_native_handler.cc
@@ -34,7 +34,7 @@ void LoggingNativeHandler::Check(
bool check_value;
std::string error_message;
ParseArgs(args, &check_value, &error_message);
- CHECK(check_value) << error_message;
+ CHECK(check_value);
}
void LoggingNativeHandler::Dcheck(

Powered by Google App Engine
This is Rietveld 408576698