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

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

Issue 2386843002: reflow comments in wtf (Closed)
Patch Set: comments (heh!) Created 4 years, 2 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/Threading.h
diff --git a/third_party/WebKit/Source/wtf/Threading.h b/third_party/WebKit/Source/wtf/Threading.h
index 1aea49fa7e92c0e4618540038bb7ac7ad120c7e8..ffe95e6ca2ed435983ff0e16f7bb671007cb767f 100644
--- a/third_party/WebKit/Source/wtf/Threading.h
+++ b/third_party/WebKit/Source/wtf/Threading.h
@@ -35,10 +35,10 @@
#include "wtf/WTFExport.h"
#include <stdint.h>
-// For portability, we do not make use of C++11 thread-safe statics, as supported
-// by some toolchains. Make use of double-checked locking to reduce overhead.
-// Note that this uses system-wide default lock, and cannot be used before
-// WTF::initializeThreading() is called.
+// For portability, we do not make use of C++11 thread-safe statics, as
+// supported by some toolchains. Make use of double-checked locking to reduce
+// overhead. Note that this uses system-wide default lock, and cannot be used
+// before WTF::initializeThreading() is called.
#define DEFINE_THREAD_SAFE_STATIC_LOCAL(T, name, initializer) \
/* Init to nullptr is thread-safe on all implementations. */ \
static void* name##Pointer = nullptr; \
« no previous file with comments | « third_party/WebKit/Source/wtf/ThreadSpecificWin.cpp ('k') | third_party/WebKit/Source/wtf/ThreadingPrimitives.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698