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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitorTest.cpp

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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/ScriptWrappableVisitorTest.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitorTest.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitorTest.cpp
index bd78c6c66c9bd38bbc447af9c93c812c5793e298..2400f7debd53bd518556d33233f5f942aabb1baa 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitorTest.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitorTest.cpp
@@ -59,8 +59,9 @@ TEST(ScriptWrappableVisitorTest, ScriptWrappableVisitorTracesWrappers) {
EXPECT_EQ(visitor->getMarkingDeque()->size(), 1ul);
visitor->AdvanceTracing(
- 0, v8::EmbedderHeapTracer::AdvanceTracingActions(
- v8::EmbedderHeapTracer::ForceCompletionAction::FORCE_COMPLETION));
+ 0,
+ v8::EmbedderHeapTracer::AdvanceTracingActions(
+ v8::EmbedderHeapTracer::ForceCompletionAction::FORCE_COMPLETION));
v8::MicrotasksScope::PerformCheckpoint(scope.isolate());
EXPECT_EQ(visitor->getMarkingDeque()->size(), 0ul);
EXPECT_TRUE(targetHeader->isWrapperHeaderMarked());
@@ -326,8 +327,9 @@ TEST(ScriptWrappableVisitorTest, NoWriteBarrierOnUnmarkedContainer) {
CHECK_EQ(0u, rawVisitor->numberOfMarkedWrappers());
// Gracefully terminate tracing.
rawVisitor->AdvanceTracing(
- 0, v8::EmbedderHeapTracer::AdvanceTracingActions(
- v8::EmbedderHeapTracer::ForceCompletionAction::FORCE_COMPLETION));
+ 0,
+ v8::EmbedderHeapTracer::AdvanceTracingActions(
+ v8::EmbedderHeapTracer::ForceCompletionAction::FORCE_COMPLETION));
rawVisitor->AbortTracing();
}
@@ -347,8 +349,9 @@ TEST(ScriptWrappableVisitorTest, WriteBarrierTriggersOnMarkedContainer) {
CHECK_EQ(1u, rawVisitor->numberOfMarkedWrappers());
// Gracefully terminate tracing.
rawVisitor->AdvanceTracing(
- 0, v8::EmbedderHeapTracer::AdvanceTracingActions(
- v8::EmbedderHeapTracer::ForceCompletionAction::FORCE_COMPLETION));
+ 0,
+ v8::EmbedderHeapTracer::AdvanceTracingActions(
+ v8::EmbedderHeapTracer::ForceCompletionAction::FORCE_COMPLETION));
rawVisitor->AbortTracing();
}

Powered by Google App Engine
This is Rietveld 408576698