Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(889)

Unified Diff: runtime/vm/isolate.h

Issue 1497033003: - Remove the legacy debug protocol. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address review comments. Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/debugger.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.h
diff --git a/runtime/vm/isolate.h b/runtime/vm/isolate.h
index b6b76b31ad3e9ec3895404b40d384889f145a543..95068b7c7b755c22b423bdc2d0f44fab5dea33a9 100644
--- a/runtime/vm/isolate.h
+++ b/runtime/vm/isolate.h
@@ -430,21 +430,6 @@ class Isolate : public BaseIsolate {
return create_callback_;
}
- static void SetInterruptCallback(Dart_IsolateInterruptCallback cb) {
- interrupt_callback_ = cb;
- }
- static Dart_IsolateInterruptCallback InterruptCallback() {
- return interrupt_callback_;
- }
-
- static void SetUnhandledExceptionCallback(
- Dart_IsolateUnhandledExceptionCallback cb) {
- unhandled_exception_callback_ = cb;
- }
- static Dart_IsolateUnhandledExceptionCallback UnhandledExceptionCallback() {
- return unhandled_exception_callback_;
- }
-
static void SetShutdownCallback(Dart_IsolateShutdownCallback cb) {
shutdown_callback_ = cb;
}
@@ -849,8 +834,6 @@ class Isolate : public BaseIsolate {
#undef ISOLATE_TIMELINE_STREAM_VARIABLE
static Dart_IsolateCreateCallback create_callback_;
- static Dart_IsolateInterruptCallback interrupt_callback_;
- static Dart_IsolateUnhandledExceptionCallback unhandled_exception_callback_;
static Dart_IsolateShutdownCallback shutdown_callback_;
static Dart_FileOpenCallback file_open_callback_;
static Dart_FileReadCallback file_read_callback_;
« no previous file with comments | « runtime/vm/debugger.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698