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

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: Fix test. 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..1becc4d1f1e4f63bcb92eae1c553ad210cb0073d 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;
Disassemble(start, end, &stdout_formatter, code);
}
static void Disassemble(uword start, uword end) {
DisassembleToStdout stdout_formatter;
- LogBlock lb(Isolate::Current());
+ LogBlock lb;
Disassemble(start, end, &stdout_formatter);
}
« no previous file with comments | « runtime/vm/compiler_stats.cc ('k') | runtime/vm/disassembler.cc » ('j') | runtime/vm/thread.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698