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

Unified Diff: runtime/vm/object.h

Issue 266913010: Refactor 'dart:profiler' UserTag API (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index 3c5d1ee50993af5738910e3a913f157d1752d95d..41650f027777ff82e8c62d208defa75ad1d221f3 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -6876,7 +6876,6 @@ class UserTag : public Instance {
}
void MakeActive() const;
- static void ClearActive();
static intptr_t InstanceSize() {
return RoundedAllocationSize(sizeof(RawUserTag));
@@ -6884,6 +6883,7 @@ class UserTag : public Instance {
static RawUserTag* New(const String& label,
Heap::Space space = Heap::kOld);
+ static RawUserTag* MakeDefault();
Ivan Posva 2014/05/06 16:43:06 As this corresponds to "static UserTag get default
Cutch 2014/05/06 17:00:25 Done.
static bool TagTableIsFull(Isolate* isolate);
static RawUserTag* FindTagById(uword tag_id);

Powered by Google App Engine
This is Rietveld 408576698