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

Unified Diff: third_party/WebKit/Source/wtf/DynamicAnnotations.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/DynamicAnnotations.h ('k') | third_party/WebKit/Source/wtf/FilePrintStream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/DynamicAnnotations.cpp
diff --git a/third_party/WebKit/Source/wtf/DynamicAnnotations.cpp b/third_party/WebKit/Source/wtf/DynamicAnnotations.cpp
index cbcd343c3546fb33a81d58145501efc75a9617ec..ae6b887950f176687075210426a24381176d0bb9 100644
--- a/third_party/WebKit/Source/wtf/DynamicAnnotations.cpp
+++ b/third_party/WebKit/Source/wtf/DynamicAnnotations.cpp
@@ -32,28 +32,29 @@
// This makes all Annotate* functions different, which prevents the linker from
// folding them.
#ifdef __COUNTER__
-#define DYNAMIC_ANNOTATIONS_IMPL \
- volatile short lineno = (__LINE__ << 8) + __COUNTER__; \
- (void)lineno;
+#define DYNAMIC_ANNOTATIONS_IMPL \
+ volatile short lineno = (__LINE__ << 8) + __COUNTER__; \
+ (void)lineno;
#else
-#define DYNAMIC_ANNOTATIONS_IMPL \
- volatile short lineno = (__LINE__ << 8); \
- (void)lineno;
+#define DYNAMIC_ANNOTATIONS_IMPL \
+ volatile short lineno = (__LINE__ << 8); \
+ (void)lineno;
#endif
-void WTFAnnotateBenignRaceSized(const char*, int, const volatile void*, long, const char*)
-{
- DYNAMIC_ANNOTATIONS_IMPL
+void WTFAnnotateBenignRaceSized(const char*,
+ int,
+ const volatile void*,
+ long,
+ const char*) {
+ DYNAMIC_ANNOTATIONS_IMPL
}
-void WTFAnnotateHappensBefore(const char*, int, const volatile void*)
-{
- DYNAMIC_ANNOTATIONS_IMPL
+void WTFAnnotateHappensBefore(const char*, int, const volatile void*) {
+ DYNAMIC_ANNOTATIONS_IMPL
}
-void WTFAnnotateHappensAfter(const char*, int, const volatile void*)
-{
- DYNAMIC_ANNOTATIONS_IMPL
+void WTFAnnotateHappensAfter(const char*, int, const volatile void*) {
+ DYNAMIC_ANNOTATIONS_IMPL
}
-#endif // USE(DYNAMIC_ANNOTATIONS) && !USE(DYNAMIC_ANNOTATIONS_NOIMPL)
+#endif // USE(DYNAMIC_ANNOTATIONS) && !USE(DYNAMIC_ANNOTATIONS_NOIMPL)
« no previous file with comments | « third_party/WebKit/Source/wtf/DynamicAnnotations.h ('k') | third_party/WebKit/Source/wtf/FilePrintStream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698