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

Unified Diff: third_party/WebKit/Source/wtf/FilePrintStream.h

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
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
« no previous file with comments | « third_party/WebKit/Source/wtf/DynamicAnnotations.cpp ('k') | third_party/WebKit/Source/wtf/FilePrintStream.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698