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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.h

Issue 2386173002: reflow comments in Source/bindings/core/v8 (Closed)
Patch Set: 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/bindings/core/v8/ScriptWrappableVisitor.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.h b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.h
index 368f21bda7881d07a9fb32d1a2d519ab681255c1..4037731e3e16bba5abc8bad161fb9388d86b4387 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.h
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.h
@@ -155,8 +155,9 @@ class CORE_EXPORT ScriptWrappableVisitor : public WrapperVisitor,
bool m_advancingTracing = false;
/**
- * Indicates whether an idle task for a lazy cleanup has already been scheduled.
- * The flag is used to avoid scheduling multiple idle tasks for cleaning up.
+ * Indicates whether an idle task for a lazy cleanup has already been
+ * scheduled. The flag is used to avoid scheduling multiple idle tasks for
+ * cleaning up.
*/
bool m_idleCleanupTaskScheduled = false;
@@ -172,7 +173,8 @@ class CORE_EXPORT ScriptWrappableVisitor : public WrapperVisitor,
void performCleanup();
/**
- * Schedule an idle task to perform a lazy (incremental) clean up of wrappers.
+ * Schedule an idle task to perform a lazy (incremental) clean up of
+ * wrappers.
*/
void scheduleIdleLazyCleanup();
void performLazyCleanup(double deadlineSeconds);
@@ -186,8 +188,8 @@ class CORE_EXPORT ScriptWrappableVisitor : public WrapperVisitor,
*/
mutable WTF::Deque<WrapperMarkingData> m_markingDeque;
/**
- * Collection of objects we started tracing from. We assume it is safe to hold
- * on to the raw pointers because:
+ * Collection of objects we started tracing from. We assume it is safe to
+ * hold on to the raw pointers because:
* * oilpan object cannot move
* * oilpan gc will call invalidateDeadObjectsInMarkingDeque to delete
* all obsolete objects

Powered by Google App Engine
This is Rietveld 408576698