Remove dead callback.

R=asiva@google.com

Review URL: https://codereview.chromium.org/2245833002 .
This commit is contained in:
Ryan Macnak 2016-08-15 09:09:26 -07:00
parent 4114bc8034
commit a0d6b94cac
2 changed files with 1 additions and 9 deletions

View file

@ -691,13 +691,6 @@ typedef Dart_Isolate (*Dart_IsolateCreateCallback)(const char* script_uri,
void* callback_data,
char** error);
/**
* An isolate interrupt callback function.
*
* This callback has been DEPRECATED.
*/
typedef bool (*Dart_IsolateInterruptCallback)();
/**
* An isolate unhandled exception callback function.
*
@ -1042,7 +1035,7 @@ DART_EXPORT Dart_Handle Dart_CreateLibrarySnapshot(Dart_Handle library,
*
* When the isolate is interrupted, the isolate interrupt callback
* will be invoked with 'isolate' as the current isolate (see
* Dart_IsolateInterruptCallback).
* Dart_SetIsolateEventHandler).
*
* \param isolate The isolate to be interrupted.
*/

View file

@ -837,7 +837,6 @@ class Isolate : public BaseIsolate {
static Dart_IsolateCreateCallback create_callback_;
static Dart_IsolateShutdownCallback shutdown_callback_;
static Dart_IsolateInterruptCallback vmstats_callback_;
static void WakePauseEventHandler(Dart_Isolate isolate);