| Index: third_party/WebKit/Source/wtf/FilePrintStream.h
|
| diff --git a/third_party/WebKit/Source/wtf/FilePrintStream.h b/third_party/WebKit/Source/wtf/FilePrintStream.h
|
| index 6f4eccdf6cdd7b5f58c074c49d396b1a91b86af2..270ed0471a74e5303007fb26ea78d857c652ce8e 100644
|
| --- a/third_party/WebKit/Source/wtf/FilePrintStream.h
|
| +++ b/third_party/WebKit/Source/wtf/FilePrintStream.h
|
| @@ -33,30 +33,27 @@
|
| namespace WTF {
|
|
|
| class WTF_EXPORT FilePrintStream final : public PrintStream {
|
| -public:
|
| - enum AdoptionMode {
|
| - Adopt,
|
| - Borrow
|
| - };
|
| + public:
|
| + enum AdoptionMode { Adopt, Borrow };
|
|
|
| - FilePrintStream(FILE*, AdoptionMode = Adopt);
|
| - ~FilePrintStream() override;
|
| + FilePrintStream(FILE*, AdoptionMode = Adopt);
|
| + ~FilePrintStream() override;
|
|
|
| - static PassOwnPtr<FilePrintStream> open(const char* filename, const char* mode);
|
| + static PassOwnPtr<FilePrintStream> open(const char* filename,
|
| + const char* mode);
|
|
|
| - FILE* file() { return m_file; }
|
| + FILE* file() { return m_file; }
|
|
|
| - void vprintf(const char* format, va_list) override WTF_ATTRIBUTE_PRINTF(2, 0);
|
| - void flush() override;
|
| + void vprintf(const char* format, va_list) override WTF_ATTRIBUTE_PRINTF(2, 0);
|
| + void flush() override;
|
|
|
| -private:
|
| - FILE* m_file;
|
| - AdoptionMode m_adoptionMode;
|
| + private:
|
| + FILE* m_file;
|
| + AdoptionMode m_adoptionMode;
|
| };
|
|
|
| -} // namespace WTF
|
| +} // namespace WTF
|
|
|
| using WTF::FilePrintStream;
|
|
|
| -#endif // FilePrintStream_h
|
| -
|
| +#endif // FilePrintStream_h
|
|
|