| 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
|
|
|