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

Unified Diff: third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.cpp

Issue 2513363002: Remove WTF_ATTRIBUTE_PRINTF. (Closed)
Patch Set: Remove comments Created 4 years, 1 month 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/core/xml/parser/XMLDocumentParser.cpp
diff --git a/third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.cpp b/third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.cpp
index f9fdca6d20eb28b6259f917669b051107e529f60..0a72fab3de0ef7d568d4d0dd1e3e315d1662e960 100644
--- a/third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.cpp
+++ b/third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.cpp
@@ -1346,7 +1346,7 @@ static void commentHandler(void* closure, const xmlChar* text) {
getParser(closure)->comment(toString(text));
}
-WTF_ATTRIBUTE_PRINTF(2, 3)
+PRINTF_FORMAT(2, 3)
static void warningHandler(void* closure, const char* message, ...) {
va_list args;
va_start(args, message);
@@ -1354,7 +1354,7 @@ static void warningHandler(void* closure, const char* message, ...) {
va_end(args);
}
-WTF_ATTRIBUTE_PRINTF(2, 3)
+PRINTF_FORMAT(2, 3)
static void normalErrorHandler(void* closure, const char* message, ...) {
va_list args;
va_start(args, message);
« no previous file with comments | « third_party/WebKit/Source/core/xml/parser/XMLDocumentParser.h ('k') | third_party/WebKit/Source/wtf/Assertions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698