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

Side by Side Diff: third_party/WebKit/Source/wtf/DataLog.h

Issue 1936893002: remove unused WTF::dataLogFString function (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/wtf/DataLog.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2012 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 21 matching lines...) Expand all
32 32
33 #include <stdarg.h> 33 #include <stdarg.h>
34 #include <stdio.h> 34 #include <stdio.h>
35 35
36 namespace WTF { 36 namespace WTF {
37 37
38 FilePrintStream& dataFile(); 38 FilePrintStream& dataFile();
39 39
40 WTF_EXPORT void dataLogFV(const char* format, va_list) WTF_ATTRIBUTE_PRINTF(1, 0 ); 40 WTF_EXPORT void dataLogFV(const char* format, va_list) WTF_ATTRIBUTE_PRINTF(1, 0 );
41 WTF_EXPORT void dataLogF(const char* format, ...) WTF_ATTRIBUTE_PRINTF(1, 2); 41 WTF_EXPORT void dataLogF(const char* format, ...) WTF_ATTRIBUTE_PRINTF(1, 2);
42 WTF_EXPORT void dataLogFString(const char*);
43 42
44 template<typename... T> 43 template<typename... T>
45 void dataLog(const T&... values) 44 void dataLog(const T&... values)
46 { 45 {
47 dataFile().print(values...); 46 dataFile().print(values...);
48 } 47 }
49 48
50 } // namespace WTF 49 } // namespace WTF
51 50
52 using WTF::dataLog; 51 using WTF::dataLog;
53 using WTF::dataLogF; 52 using WTF::dataLogF;
54 using WTF::dataLogFString;
55 53
56 #endif // DataLog_h 54 #endif // DataLog_h
57 55
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/wtf/DataLog.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698