We should replace macros defined in wtf/Assertions.h with macros defined in base/logging.h.
*ASSERT*() -> *CHECK*()
ASSERT_NOT_REACHED() -> NOTREACHED()
ENABLE(ASSERT) -> DCHECK_IS_ON()
FATAL() -> DLOG(FATAL)
WTF_LOG_ERROR() -> DLOG(ERROR)
WTF_LOG() -> DVLOG() or VLOG()
etc.