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

Unified Diff: runtime/vm/disassembler.h

Issue 1314673008: Migrate logging infrastructure Isolate->Thread (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Finalize marking tasks in parallel, now that it's safe. Created 5 years, 3 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
Index: runtime/vm/disassembler.h
diff --git a/runtime/vm/disassembler.h b/runtime/vm/disassembler.h
index 86413f868c90aee90b98d56743a8bc52647c0677..3dfd3d136370557983aa0fd8b708f9e71ced1299 100644
--- a/runtime/vm/disassembler.h
+++ b/runtime/vm/disassembler.h
@@ -99,13 +99,13 @@ class Disassembler : public AllStatic {
uword end,
const Code& code) {
DisassembleToStdout stdout_formatter;
- LogBlock lb(Isolate::Current());
+ LogBlock lb(Thread::Current());
Disassemble(start, end, &stdout_formatter, code);
}
static void Disassemble(uword start, uword end) {
DisassembleToStdout stdout_formatter;
- LogBlock lb(Isolate::Current());
+ LogBlock lb(Thread::Current());
Disassemble(start, end, &stdout_formatter);
}

Powered by Google App Engine
This is Rietveld 408576698