| Index: third_party/WebKit/Source/wtf/Assertions.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/Assertions.cpp b/third_party/WebKit/Source/wtf/Assertions.cpp
|
| index ed52388228dacc4f9c01d5133c3e2d68cac66180..c203bdaf31a78d19356098973b2db6d29b4dafbe 100644
|
| --- a/third_party/WebKit/Source/wtf/Assertions.cpp
|
| +++ b/third_party/WebKit/Source/wtf/Assertions.cpp
|
| @@ -338,17 +338,6 @@ void WTFPrintBacktrace(void** stack, int size)
|
| }
|
| }
|
|
|
| -void WTFLog(WTFLogChannel* channel, const char* format, ...)
|
| -{
|
| - if (channel->state != WTFLogChannelOn)
|
| - return;
|
| -
|
| - va_list args;
|
| - va_start(args, format);
|
| - vprintf_stderr_with_trailing_newline(format, args);
|
| - va_end(args);
|
| -}
|
| -
|
| void WTFLogAlways(const char* format, ...)
|
| {
|
| va_list args;
|
|
|