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

Unified Diff: extensions/renderer/logging_native_handler.cc

Issue 842523002: base: Change DCHECK_IS_ON to a macro DCHECK_IS_ON(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: dcheck2: withoutandroidchange Created 5 years, 11 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: extensions/renderer/logging_native_handler.cc
diff --git a/extensions/renderer/logging_native_handler.cc b/extensions/renderer/logging_native_handler.cc
index 9019d86e2f8fcb03a94e1877650c2d6beb36ea30..0996a2ac67d34d4e71516c5324eb9ac67c481878 100644
--- a/extensions/renderer/logging_native_handler.cc
+++ b/extensions/renderer/logging_native_handler.cc
@@ -47,7 +47,7 @@ void LoggingNativeHandler::Dcheck(
void LoggingNativeHandler::DcheckIsOn(
const v8::FunctionCallbackInfo<v8::Value>& args) {
- args.GetReturnValue().Set(DCHECK_IS_ON);
+ args.GetReturnValue().Set(DCHECK_IS_ON());
}
void LoggingNativeHandler::Log(

Powered by Google App Engine
This is Rietveld 408576698