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); |
}; |