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

Unified Diff: third_party/WebKit/Source/wtf/TreeNode.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
« no previous file with comments | « third_party/WebKit/Source/wtf/ThreadingWin.cpp ('k') | third_party/WebKit/Source/wtf/TypeTraits.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/TreeNode.h
diff --git a/third_party/WebKit/Source/wtf/TreeNode.h b/third_party/WebKit/Source/wtf/TreeNode.h
index e3bba351358310eeeb0324f889b28d00300d5901..61923477f76c656dc7e54ee996b555e8520e31fa 100644
--- a/third_party/WebKit/Source/wtf/TreeNode.h
+++ b/third_party/WebKit/Source/wtf/TreeNode.h
@@ -39,12 +39,17 @@ namespace WTF {
// TreeNode is generic, ContainerNode-like linked tree data structure.
// There are a few notable difference between TreeNode and Node:
//
-// * Each TreeNode node is NOT ref counted. The user have to retain its lifetime somehow.
-// FIXME: lifetime management could be parameterized so that ref counted implementations can be used.
-// * It ASSERT()s invalid input. The callers have to ensure that given parameter is sound.
-// * There is no branch-leaf difference. Every node can be a parent of other node.
+// * Each TreeNode node is NOT ref counted. The user have to retain its
+// lifetime somehow.
+// FIXME: lifetime management could be parameterized so that ref counted
+// implementations can be used.
+// * It ASSERT()s invalid input. The callers have to ensure that given
+// parameter is sound.
+// * There is no branch-leaf difference. Every node can be a parent of other
+// node.
//
-// FIXME: oilpan: Trace tree node edges to ensure we don't have dangling pointers.
+// FIXME: oilpan: Trace tree node edges to ensure we don't have dangling
+// pointers.
// As it is used in HTMLImport it is safe since they all die together.
template <class T>
class TreeNode {
« no previous file with comments | « third_party/WebKit/Source/wtf/ThreadingWin.cpp ('k') | third_party/WebKit/Source/wtf/TypeTraits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698