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

Unified Diff: runtime/vm/thread.h

Issue 913503004: Per isolate Log with block support (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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/thread.h
diff --git a/runtime/vm/thread.h b/runtime/vm/thread.h
index 63837bd849ddff3f13e6cf3b66fec0885b9d28e0..e77ec40e9c72f3f2231128b8a2a9e3c78e9766c0 100644
--- a/runtime/vm/thread.h
+++ b/runtime/vm/thread.h
@@ -31,6 +31,11 @@ class Thread {
return reinterpret_cast<Isolate*>(this);
}
+ // The log for with this thread.
koda 2015/02/09 17:57:29 "for with" -> "for"
Cutch 2015/02/09 18:19:39 Done.
+ Log* Log() {
+ return reinterpret_cast<Isolate*>(this)->Log();
+ }
+
private:
DISALLOW_COPY_AND_ASSIGN(Thread);
};
« runtime/vm/log.h ('K') | « runtime/vm/service.cc ('k') | runtime/vm/vm_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698