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

Unified Diff: runtime/vm/os_android.cc

Issue 1807293002: - Fix for issue 25950 (add registration of a thread exit callback) (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: self-review-comments Created 4 years, 9 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 | « runtime/vm/isolate.cc ('k') | runtime/vm/os_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/os_android.cc
diff --git a/runtime/vm/os_android.cc b/runtime/vm/os_android.cc
index 5975735f78d2c175d59177ad100d268dd4cf8c0b..03540bb99b2a29dc2ce13e162aae71f92353e8af 100644
--- a/runtime/vm/os_android.cc
+++ b/runtime/vm/os_android.cc
@@ -37,7 +37,7 @@ DEFINE_FLAG(bool, generate_perf_events_symbols, false,
class PerfCodeObserver : public CodeObserver {
public:
PerfCodeObserver() : out_file_(NULL) {
- Dart_FileOpenCallback file_open = Isolate::file_open_callback();
+ Dart_FileOpenCallback file_open = Dart::file_open_callback();
if (file_open == NULL) {
return;
}
@@ -48,7 +48,7 @@ class PerfCodeObserver : public CodeObserver {
}
~PerfCodeObserver() {
- Dart_FileCloseCallback file_close = Isolate::file_close_callback();
+ Dart_FileCloseCallback file_close = Dart::file_close_callback();
if ((file_close == NULL) || (out_file_ == NULL)) {
return;
}
@@ -64,7 +64,7 @@ class PerfCodeObserver : public CodeObserver {
uword prologue_offset,
uword size,
bool optimized) {
- Dart_FileWriteCallback file_write = Isolate::file_write_callback();
+ Dart_FileWriteCallback file_write = Dart::file_write_callback();
if ((file_write == NULL) || (out_file_ == NULL)) {
return;
}
« no previous file with comments | « runtime/vm/isolate.cc ('k') | runtime/vm/os_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698