| Index: third_party/WebKit/Source/wtf/Assertions.h
|
| diff --git a/third_party/WebKit/Source/wtf/Assertions.h b/third_party/WebKit/Source/wtf/Assertions.h
|
| index 4f9b24e207fa15ac027127735d79f10fbdd3ae06..44d98b1a1c352e3a0620c0197c9da2d5c2c8cf2e 100644
|
| --- a/third_party/WebKit/Source/wtf/Assertions.h
|
| +++ b/third_party/WebKit/Source/wtf/Assertions.h
|
| @@ -134,9 +134,10 @@ class WTF_EXPORT ScopedLogger {
|
| #undef ASSERT
|
| #endif
|
|
|
| -#define DCHECK_AT(assertion, file, line) \
|
| - LAZY_STREAM(logging::LogMessage(file, line, #assertion).stream(), \
|
| - DCHECK_IS_ON() ? !(assertion) : false)
|
| +#define DCHECK_AT(assertion, file, line) \
|
| + LAZY_STREAM(logging::LogMessage(file, line, logging::LOG_DCHECK).stream(), \
|
| + DCHECK_IS_ON() ? !(assertion) : false) \
|
| + << "Check failed: " #assertion ". "
|
|
|
| #if DCHECK_IS_ON()
|
| #define ASSERT(assertion) DCHECK(assertion)
|
|
|