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

Unified Diff: runtime/vm/thread.cc

Issue 1363033003: Make TimelineEventBlocks reclaimable (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: 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
« no previous file with comments | « runtime/vm/thread.h ('k') | runtime/vm/thread_registry.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/thread.cc
diff --git a/runtime/vm/thread.cc b/runtime/vm/thread.cc
index 79ccec8fa0f1a59a947cf8ec8314f2d2e42b01ec..eff09226730aae79e914661012fe30fbb87aeb2e 100644
--- a/runtime/vm/thread.cc
+++ b/runtime/vm/thread.cc
@@ -343,14 +343,6 @@ bool Thread::IsThreadInterrupterEnabled(ThreadInterruptCallback* callback,
}
-void Thread::CloseTimelineBlock() {
- if (timeline_block() != NULL) {
- timeline_block()->Finish();
- set_timeline_block(NULL);
- }
-}
-
-
bool Thread::CanLoadFromThread(const Object& object) {
#define CHECK_OBJECT(type_name, member_name, expr, default_init_value) \
if (object.raw() == expr) return true;
« no previous file with comments | « runtime/vm/thread.h ('k') | runtime/vm/thread_registry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698