Index: src/v8.cc |
diff --git a/src/v8.cc b/src/v8.cc |
index eed4333520390935eaab5259bc6ee751aff1763e..30f64d6bdf8ea91d72c9adffa46773c158ca0533 100644 |
--- a/src/v8.cc |
+++ b/src/v8.cc |
@@ -87,21 +87,6 @@ void V8::SetReturnAddressLocationResolver( |
} |
-void V8::RunMicrotasks(Isolate* isolate) { |
- if (!isolate->microtask_pending()) |
- return; |
- |
- HandleScopeImplementer* handle_scope_implementer = |
- isolate->handle_scope_implementer(); |
- ASSERT(handle_scope_implementer->CallDepthIsZero()); |
- |
- // Increase call depth to prevent recursive callbacks. |
- handle_scope_implementer->IncrementCallDepth(); |
- Execution::RunMicrotasks(isolate); |
- handle_scope_implementer->DecrementCallDepth(); |
-} |
- |
- |
void V8::InitializeOncePerProcessImpl() { |
FlagList::EnforceFlagImplications(); |
Serializer::InitializeOncePerProcess(); |