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

Unified Diff: third_party/WebKit/Source/wtf/Assertions.cpp

Issue 1820083005: Remove platform/NotImplemented.*. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: 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 fe9afbec91e1dc479a52fae812b2c2a1f1e6e411..d67ab5a56eeaf75b6d2c07e217bc2b2d21442a37 100644
--- a/third_party/WebKit/Source/wtf/Assertions.cpp
+++ b/third_party/WebKit/Source/wtf/Assertions.cpp
@@ -260,19 +260,6 @@ void WTFLog(WTFLogChannel* channel, const char* format, ...)
va_end(args);
}
-void WTFLogVerbose(const char* file, int line, const char* function, 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);
-
- printCallSite(file, line, function);
-}
-
void WTFLogAlways(const char* format, ...)
{
va_list args;
« third_party/WebKit/Source/web/WebViewImpl.cpp ('K') | « third_party/WebKit/Source/wtf/Assertions.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698