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

Unified Diff: runtime/vm/debugger_api_impl.cc

Issue 1146523003: Fix fall out from hide isolate pointer change (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 7 months 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 | « no previous file | runtime/vm/isolate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/debugger_api_impl.cc
diff --git a/runtime/vm/debugger_api_impl.cc b/runtime/vm/debugger_api_impl.cc
index 194861aef9adbe2124061a1c2bc111e072c5f457..f4f893e14c1477b8af779f41b37d774554af731a 100644
--- a/runtime/vm/debugger_api_impl.cc
+++ b/runtime/vm/debugger_api_impl.cc
@@ -976,14 +976,16 @@ DART_EXPORT Dart_Handle Dart_SetLibraryDebuggable(intptr_t library_id,
DART_EXPORT Dart_Isolate Dart_GetIsolate(Dart_IsolateId isolate_id) {
- Isolate* isolate = PortMap::GetIsolate(isolate_id);
- return Api::CastIsolate(isolate);
+ // Dart_Isolate is now the same as Dart_IsolateId.
+ // TODO(johnmccutchan): Kill Dart_IsolateId.
+ return reinterpret_cast<Dart_Isolate>(isolate_id);
}
DART_EXPORT Dart_IsolateId Dart_GetIsolateId(Dart_Isolate dart_isolate) {
- Isolate* isolate = Api::CastIsolate(dart_isolate);
- return isolate->debugger()->GetIsolateId();
+ // Dart_Isolate is now the same as Dart_IsolateId.
+ // TODO(johnmccutchan): Kill Dart_IsolateId.
+ return reinterpret_cast<Dart_IsolateId>(dart_isolate);
}
} // namespace dart
« no previous file with comments | « no previous file | runtime/vm/isolate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698