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

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

Issue 1611343002: wtf reformat test Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: pydent Created 4 years, 11 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
« no previous file with comments | « third_party/WebKit/Source/wtf/CurrentTime.cpp ('k') | third_party/WebKit/Source/wtf/DataLog.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/DataLog.h
diff --git a/third_party/WebKit/Source/wtf/DataLog.h b/third_party/WebKit/Source/wtf/DataLog.h
index 16ae40311637606d1785d214f3c0170818a265d3..fe423ec1311fe16ffa8ac558203adb10530050d8 100644
--- a/third_party/WebKit/Source/wtf/DataLog.h
+++ b/third_party/WebKit/Source/wtf/DataLog.h
@@ -37,21 +37,20 @@ namespace WTF {
FilePrintStream& dataFile();
-WTF_EXPORT void dataLogFV(const char* format, va_list) WTF_ATTRIBUTE_PRINTF(1, 0);
+WTF_EXPORT void dataLogFV(const char* format, va_list)
+ WTF_ATTRIBUTE_PRINTF(1, 0);
WTF_EXPORT void dataLogF(const char* format, ...) WTF_ATTRIBUTE_PRINTF(1, 2);
WTF_EXPORT void dataLogFString(const char*);
-template<typename... T>
-void dataLog(const T&... values)
-{
- dataFile().print(values...);
+template <typename... T>
+void dataLog(const T&... values) {
+ dataFile().print(values...);
}
-} // namespace WTF
+} // namespace WTF
using WTF::dataLog;
using WTF::dataLogF;
using WTF::dataLogFString;
-#endif // DataLog_h
-
+#endif // DataLog_h
« no previous file with comments | « third_party/WebKit/Source/wtf/CurrentTime.cpp ('k') | third_party/WebKit/Source/wtf/DataLog.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698