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

Unified Diff: third_party/WebKit/Source/wtf/FilePrintStream.h

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
« no previous file with comments | « third_party/WebKit/Source/wtf/DataLog.h ('k') | third_party/WebKit/Source/wtf/PrintStream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/FilePrintStream.h
diff --git a/third_party/WebKit/Source/wtf/FilePrintStream.h b/third_party/WebKit/Source/wtf/FilePrintStream.h
index a94f306320f689674d764ee87f7b660bff92f262..46af3de1abc7c826291646110fdbf69d3180620b 100644
--- a/third_party/WebKit/Source/wtf/FilePrintStream.h
+++ b/third_party/WebKit/Source/wtf/FilePrintStream.h
@@ -26,6 +26,7 @@
#ifndef FilePrintStream_h
#define FilePrintStream_h
+#include "wtf/Compiler.h"
#include "wtf/PrintStream.h"
#include <memory>
#include <stdio.h>
@@ -44,7 +45,7 @@ class WTF_EXPORT FilePrintStream final : public PrintStream {
FILE* file() { return m_file; }
- void vprintf(const char* format, va_list) override WTF_ATTRIBUTE_PRINTF(2, 0);
+ PRINTF_FORMAT(2, 0) void vprintf(const char* format, va_list) override;
void flush() override;
private:
« no previous file with comments | « third_party/WebKit/Source/wtf/DataLog.h ('k') | third_party/WebKit/Source/wtf/PrintStream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698