Reviewers: alph, jochen,
Description:
Remove v8::Isolate::ClearInterrupt
The method was deprecated a while ago:
https://crrev.com/87e4bba31eabfd3b12e42b5886dc9da08d2daf13
LOG=Y
BUG=None
Please review this at https://codereview.chromium.org/1032623007/
Base URL: https://chromium.googlesource.com/v8/v8.git@master
Affected files (+0, -11 lines):
M include/v8.h
M src/api.cc
Index: include/v8.h
diff --git a/include/v8.h b/include/v8.h
index
6ce2df1160104396dce6d977118acadb59b39f01..1b1ab19c74d203e45474f0eb3a37242246722994
100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -5348,13 +5348,6 @@ class V8_EXPORT Isolate {
void RequestInterrupt(InterruptCallback callback, void* data);
/**
- * Clear interrupt request created by |RequestInterrupt|.
- * Can be called from another thread without acquiring a |Locker|.
- */
- V8_DEPRECATED("There's no way to clear interrupts in flight.",
- void ClearInterrupt());
-
- /**
* Request garbage collection in this Isolate. It is only valid to call
this
* function if --expose_gc was specified.
*
Index: src/api.cc
diff --git a/src/api.cc b/src/api.cc
index
af164514bedda8dfa5df20ea984d5e6b0cc674bc..ad136c0df9e2bca06c31e4cfe8c15a7b1dc17ce0
100644
--- a/src/api.cc
+++ b/src/api.cc
@@ -6787,10 +6787,6 @@ void Isolate::RequestInterrupt(InterruptCallback
callback, void* data) {
}
-void Isolate::ClearInterrupt() {
-}
-
-
void Isolate::RequestGarbageCollectionForTesting(GarbageCollectionType
type) {
CHECK(i::FLAG_expose_gc);
if (type == kMinorGarbageCollection) {
--
--
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.