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

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

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/PrintStream.h ('k') | third_party/WebKit/Source/wtf/RawPtr.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/PrintStream.cpp
diff --git a/third_party/WebKit/Source/wtf/PrintStream.cpp b/third_party/WebKit/Source/wtf/PrintStream.cpp
index 32a499f495c61232a1ffbec388628910834070f3..2a9dde237ded80dbebb70a9f6140881504b05f6b 100644
--- a/third_party/WebKit/Source/wtf/PrintStream.cpp
+++ b/third_party/WebKit/Source/wtf/PrintStream.cpp
@@ -32,87 +32,70 @@
namespace WTF {
PrintStream::PrintStream() {}
-PrintStream::~PrintStream() {} // Force the vtable to be in this module
-
-void PrintStream::printf(const char* format, ...)
-{
- va_list argList;
- va_start(argList, format);
- vprintf(format, argList);
- va_end(argList);
-}
+PrintStream::~PrintStream() {} // Force the vtable to be in this module
-void PrintStream::flush()
-{
+void PrintStream::printf(const char* format, ...) {
+ va_list argList;
+ va_start(argList, format);
+ vprintf(format, argList);
+ va_end(argList);
}
-void printInternal(PrintStream& out, const char* string)
-{
- out.printf("%s", string);
-}
+void PrintStream::flush() {}
-void printInternal(PrintStream& out, const CString& string)
-{
- out.print(string.data());
+void printInternal(PrintStream& out, const char* string) {
+ out.printf("%s", string);
}
-void printInternal(PrintStream& out, const String& string)
-{
- out.print(string.utf8());
+void printInternal(PrintStream& out, const CString& string) {
+ out.print(string.data());
}
-void printInternal(PrintStream& out, bool value)
-{
- if (value)
- out.print("true");
- else
- out.print("false");
+void printInternal(PrintStream& out, const String& string) {
+ out.print(string.utf8());
}
-void printInternal(PrintStream& out, int value)
-{
- out.printf("%d", value);
+void printInternal(PrintStream& out, bool value) {
+ if (value)
+ out.print("true");
+ else
+ out.print("false");
}
-void printInternal(PrintStream& out, unsigned value)
-{
- out.printf("%u", value);
+void printInternal(PrintStream& out, int value) {
+ out.printf("%d", value);
}
-void printInternal(PrintStream& out, long value)
-{
- out.printf("%ld", value);
+void printInternal(PrintStream& out, unsigned value) {
+ out.printf("%u", value);
}
-void printInternal(PrintStream& out, unsigned long value)
-{
- out.printf("%lu", value);
+void printInternal(PrintStream& out, long value) {
+ out.printf("%ld", value);
}
-void printInternal(PrintStream& out, long long value)
-{
- out.printf("%lld", value);
+void printInternal(PrintStream& out, unsigned long value) {
+ out.printf("%lu", value);
}
-void printInternal(PrintStream& out, unsigned long long value)
-{
- out.printf("%llu", value);
+void printInternal(PrintStream& out, long long value) {
+ out.printf("%lld", value);
}
-void printInternal(PrintStream& out, float value)
-{
- out.print(static_cast<double>(value));
+void printInternal(PrintStream& out, unsigned long long value) {
+ out.printf("%llu", value);
}
-void printInternal(PrintStream& out, double value)
-{
- out.printf("%lf", value);
+void printInternal(PrintStream& out, float value) {
+ out.print(static_cast<double>(value));
}
-void dumpCharacter(PrintStream& out, char value)
-{
- out.printf("%c", value);
+void printInternal(PrintStream& out, double value) {
+ out.printf("%lf", value);
}
-} // namespace WTF
+void dumpCharacter(PrintStream& out, char value) {
+ out.printf("%c", value);
+}
+} // namespace WTF
« no previous file with comments | « third_party/WebKit/Source/wtf/PrintStream.h ('k') | third_party/WebKit/Source/wtf/RawPtr.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698