Revision: 21251
Author: [email protected]
Date: Mon May 12 07:41:06 2014 UTC
Log: Drop unused static microtask API
BUG=none
LOG=y
[email protected]
Review URL: https://codereview.chromium.org/261413003
http://code.google.com/p/v8/source/detail?r=21251
Modified:
/branches/bleeding_edge/include/v8.h
/branches/bleeding_edge/src/api.cc
=======================================
--- /branches/bleeding_edge/include/v8.h Mon May 12 06:27:38 2014 UTC
+++ /branches/bleeding_edge/include/v8.h Mon May 12 07:41:06 2014 UTC
@@ -4760,28 +4760,6 @@
*/
static void RemoveMemoryAllocationCallback(MemoryAllocationCallback
callback);
- /**
- * Experimental: Runs the Microtask Work Queue until empty
- *
- * Deprecated: Use methods on Isolate instead.
- */
- static void RunMicrotasks(Isolate* isolate);
-
- /**
- * Experimental: Enqueues the callback to the Microtask Work Queue
- *
- * Deprecated: Use methods on Isolate instead.
- */
- static void EnqueueMicrotask(Isolate* isolate, Handle<Function>
microtask);
-
- /**
- * Experimental: Controls whether the Microtask Work Queue is
automatically
- * run when the script call depth decrements to zero.
- *
- * Deprecated: Use methods on Isolate instead.
- */
- static void SetAutorunMicrotasks(Isolate *source, bool autorun);
-
/**
* Initializes from snapshot if possible. Otherwise, attempts to
* initialize from scratch. This function is called implicitly if
=======================================
--- /branches/bleeding_edge/src/api.cc Mon May 12 06:27:38 2014 UTC
+++ /branches/bleeding_edge/src/api.cc Mon May 12 07:41:06 2014 UTC
@@ -6445,21 +6445,6 @@
isolate->memory_allocator()->RemoveMemoryAllocationCallback(
callback);
}
-
-
-void V8::RunMicrotasks(Isolate* isolate) {
- isolate->RunMicrotasks();
-}
-
-
-void V8::EnqueueMicrotask(Isolate* isolate, Handle<Function> microtask) {
- isolate->EnqueueMicrotask(microtask);
-}
-
-
-void V8::SetAutorunMicrotasks(Isolate* isolate, bool autorun) {
- isolate->SetAutorunMicrotasks(autorun);
-}
void V8::TerminateExecution(Isolate* isolate) {
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.