Remove v8::Isolate::ClearInterrupt

The method was deprecated a while ago: https://crrev.com/87e4bba31eabfd3b12e42b5886dc9da08d2daf13

LOG=Y
BUG=YES
API=Remove v8::Isolate::ClearInterrupt

Review URL: https://codereview.chromium.org/1032623007

Cr-Commit-Position: refs/heads/master@{#27449}
This commit is contained in:
yurys 2015-03-25 08:32:04 -07:00 committed by Commit bot
parent 9b29d008df
commit a037a44582
2 changed files with 0 additions and 11 deletions

View File

@ -5347,13 +5347,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.

View File

@ -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) {