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

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

Issue 1436153002: Apply clang-format with Chromium-style without column limit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/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 5553c3dbc5845659804910f2168227c568caa034..c5afc45a2f8fbee27688af4175ef6262b28d6935 100644
--- a/third_party/WebKit/Source/wtf/PrintStream.cpp
+++ b/third_party/WebKit/Source/wtf/PrintStream.cpp
@@ -33,87 +33,71 @@
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